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