n, p = map(int, input().split())

if p == n * p:
    ans = "="
else:
    ans = "!="

print(ans)