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