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