def main(): N, P = map(int, input().split()) if N == 1: print('=') else: print('!=') main()