a = input("Enter the first number: ")
b = input("Enter the second number: ")
if a>b:
print(">")
elif a<b:
print("<")
else:
print("=")
a = input("Enter the first number: ")
b = input("Enter the second number: ")
if a>b:
print(">")
elif a<b:
print("<")
else:
print("=")