8 lines
99 B
Python
8 lines
99 B
Python
a,b=map(int,input().split())
|
|
|
|
if a>b:
|
|
print(">")
|
|
elif a<b:
|
|
print("<")
|
|
else:
|
|
print("==") |