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