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