#include <iostream> int main() { int n, p; std::cin>>n>>p; std::cout<<(p==n*p?"=":"!=")<<std::endl; return 0; }