16 lines
304 B
Python
16 lines
304 B
Python
# Conditionals, Boolean expressions, relational operators
|
|
|
|
from cs50 import get_int
|
|
|
|
# Prompt user for integers
|
|
x = get_int("What's x? ")
|
|
y = get_int("What's y? ")
|
|
|
|
# Compare integers
|
|
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")
|