#include using namespace std; /////////////////// メイン /////////////////// int main () { //////////////////// 入力 //////////////////// int n, p; cin >> n >> p; //////////////// 出力変数定義 //////////////// string result = "!="; //////////////////// 処理 //////////////////// if (p==n*p) result = "="; //////////////////// 出力 //////////////////// cout << result << endl; //////////////////// 終了 //////////////////// return 0; }