#include using namespace std; int main(){ int n,p; cin >> n >> p; if(p == p * n) cout << "=" << endl; else cout << "!=" << endl; return 0; }