# coding: utf-8 #P=NP? s=[] s=map(int,raw_input().split()) n=int(s[0]) p=int(s[1]) res=n*p if res==p: print "=" else: print "!="