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