// yukicoder: No.337 P versus NP // 2019.4.15 bal4u #include int main() { int N, P; scanf("%d%d", &N, &P); if (N*P == P) puts("="); else puts("!="); return 0; }