#include <iostream>

using namespace std;

int main() {
	
	int n,p;
	cin >> n >> p;
	
	n = n * p;
	if(n == p)cout << "="; else cout << "!=";
	
}