#include <stdio.h>

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