#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
typedef long long int ll;

int main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	int n,p; cin >> n >> p;
	if(p==p*n){
		cout << "=" << endl;
	}
	else{
		cout << "!=" << endl;
	}
}