- P49's solution
-
题解 P49
- @ 2025-10-24 18:16:58
只有 时输出 е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;
}