# coding: utf-8
N, P = map(int, input().split())

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