Files
CodeObject/storage/zeta/py/completed/1330.py

7 lines
105 B
Python

a,b = map(int, input().split())
if a > b:
print(">")
elif a < b:
print("<")
else:
print("==")