#include using namespace std; int main() { int n, p; cin >> n >> p; if (p==n*p) { printf("=\n"); } else { printf("!=\n"); } return 0; }