只有 p=0p=0 时输出 еmm,其余都是 N0

AC code:

#include <bits/stdc++.h>
using namespace std;
int main() {
    int n, p;
    cin >> n >> p;
    if (p == 0) {
        cout << "еmm" << endl; // "е" 是 U+0435
    } else {
        cout << "N0" << endl; // "0" 是零不是 "O"
    }
    return 0;
}