#include "bits/stdc++.h" using namespace std; int main(){ int n, p; cin >> n >> p; cout << (p&1|n&1 ? "=" : "!=") << endl; }