#include int main(){ //input int N,P; scanf("%d %d",&N,&P); //output if (P == N*P){ printf("=\n"); }else{ printf("!=\n"); } return 0; }