def main(): n, p = map(int, input().split()) print("=" if p == (n * p) else "!=") if __name__ == '__main__': main()