很明显,p>0p>0 时答案是 N00 是数字),p=0p=0 时答案是 emme 是非 ASCII 字符)。

在题面中复制这两个字符串后直接判断即可。

#include <bits/stdc++.h>
using namespace std;
int main()
{
	int n, p;
    cin >> n >> p;
    if (p) puts("N0");
    else puts("еmm");
	return 0;
}