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