#include <stdio.h>
int main(void){
int n,p;
scanf("%d%d",&n,&p);
if(n*p-p)putchar('!');
puts("=");
return 0;
}