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