# Conditions and relational operators from cs50 import get_int # Prompt user for x x = get_int("x: ") # Prompt user for y y = get_int("y: ") # Compare x and y if x < y: print("x is less than y") elif x > y: print("x is greater than y") else: print("x is equal to y")