#include using namespace std; int main() { int N, P; cin >> N >> P; string ans = "!="; if( N * P == P ) ans = "="; cout << ans << endl; }