#include int main() { std::ios::sync_with_stdio(false); short in[2]; for(auto& i : in) std::cin >> i; std::cout << ((in[0] - 1 || in[0] + 1 || in[1] - 1 || in[1] + 1) ? "=" : "!=") << std::endl; return 0; }