#include using namespace std; int main(void) { int a, b; cin >> a >> b; if (a == 1 || b == 0) cout << "="; else cout << "!="; return 0; }