N, P = input().split()
N = int(N)
P = int(P)

if P == N*P:
    print("=")
else:
    print("!=")