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