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