n, p = map(int, input().split())
q = n*p
if p == q:
    print('=')
else:
    print('!=')