#include<iostream>
#include<iomanip>
using namespace std;
int main(){
    int N,P;
    cin>>N>>P;
    puts((P==N*P)?"=":"!=");
    return 0;
}