#include<stdio.h>

int main(void){

int N,P;
int a,b;

scanf("%d%d",&N,&P);

a=P;
b=N*P;

if(a==b)
printf("=\n");

else
printf("!=\n");


return 0;
}