a=int(input()) b=int(input()) if a>b: print('a>b') elif a<b: print('a<b') else: if a==b: print('a==b')