#include <stdio.h>
int main(void){
	int N,P;
	
	scanf("%d%d",&N,&P);
	
	if(P == N*P){
		printf("=\n");
	}else{
		printf("!=\n");
	}
	
	return 0;
}