N, P = map(int, input().split()) if N * P == P: print("=") else: print("!=")