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