#include using namespace std; int main() { // 1. 入力情報取得. int N, P; cin >> N >> P; // 2. 後処理. cout << ((P == N * P) ? "=" : "!=") << endl; return 0; }