# 读取输入的两个整数
a, b = map(int, input().split())

# 比较大小并输出结果
if a < b:
    print('<')
elif a > b:
    print('>')
else:
    print('=')