#include using namespace std; #define REP(i,n) for(int i=0; i<(n); i++) #define D(x) for_each((x).begin(),(x).end(),[](auto& x){cout<> N >> P; cout << ( P*N == P ? "=" : "!=" ) << endl; return 0; }