#include <bits/stdc++.h>
#define INF 990000000
//25
using namespace std;

int main() {
int n,p;

cin>>n>>p;

if(p==n*p)
cout <<"="<<endl;
else
cout <<"!="<<endl;


}