#include typedef long long ll; using namespace std; int INF = 1e9; int MOD = 1e9+7; main(){ int N,P; cin >> N >> P; if(P == N*P)cout << "=" << endl; else cout << "!=" << endl; }