#include int main(){ int n, m; std::cin >> n >> m; if(n == m){ std::cout << "=" << std::endl; }else{ std::cout << "!=" << std::endl; } return 0; }