#!/usr/bin/env python n, p = [int(x) for x in input().split()] if p == n * p: print('=') else: print('!=')