#include int main(void) { int n; int p; int u; scanf("%d%d",&n,&p); u=n*p; if(u==p){ printf("="); }else{ printf("!="); } return 0; }