read 2 integers x and y if x > y say x is greater than y if x = y say x and y are equal if x < y say x is less than y ======================= read x, change x to integer read y, change y to integer if x > y print x is greater than y if x = y print x and y are equal if x < y print x is less than y ======================= x = int(input("First number> ")) y = int(input("Second number> ")) if x > y: print(x, "is greater than", y) elif x = y: print(x, "and", y, "are equal") else: print(x, "is less than", y)