What is the output of the following Python program? x = 8 if x == 8: print('Equals 8') if x < 10: print('Less than 10') if x != 7: print('Not equal 7') if x > 10: print('Greater than 10') print("Hello world")