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