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