while True:
try:
a, b = map(int, input().split())
ch = '>' if a > b else '<' if a < b else '='
print('{}{}{}'.format(a, ch, b))
except EOFError:
break
while True:
try:
a, b = map(int, input().split())
ch = '>' if a > b else '<' if a < b else '='
print('{}{}{}'.format(a, ch, b))
except EOFError:
break