#include <stdio.h>


int main(void) {
	int n,p;
	scanf("%d %d",&n,&p);
		printf((p==n*p?"=":"!="));

	return 0;

}