#coding:utf-8

N,P=map(int,raw_input().split())
NP=N*P

if P == NP:
	print '='
else:
	print '!='