1 x = int(input("X: ")) 2 y = int(input("y: ")) 3 4 if (x > y): 5 print("x > y") 6 else: 7 print("x < y") 8 9 10