# No.337 P versus NP
n, p = [int(i) for i in input().split()]
print('=' if p == n * p else '!=')