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