#include int main(){ int N,P; std::cin >> N >> P; if(P == N*P){ std::cout << "="; } else{ std::cout << "!="; } return 0; }