#include int main(){ std::ios::sync_with_stdio(false); std::cin.tie(0); int n, p; std::cin >> n >> p; std::cout << ((n==1 || p==0) ? "=" : "!=") << "\n"; return 0; }