#include <iostream>
#include <cstdio>
#include <cmath>
#include <algorithm>

using namespace std;

//#define __DEBUG__ (1)

#ifdef __DEBUG__
#define p(x) (cout << "  [DEBUG] " #x << " = " << x << endl)
#else
#define p(x)
#endif

#define min(x,y) ((x < y) ? x : y)
#define max(x,y) ((x > y) ? x : y)
#define dist2(x1,y1,x2,y2) ((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2))


int main()
{
  int N, T, P;

  for (int t=0; t<1; t++) {
    cin >> N >> P;
    if (P == N*P)
      cout << "=" << endl;
    else
      cout << "!=" << endl;
  }

}