这道题有些水。。。

我们观察到,这是一道彻底离线的题目,连输入也没有,我们可以发现 1 &lt; = n &lt; = 40 1&lt;=n&lt;=40 1<=n<=40

于是,我们就可以考虑 n = 1 n=1 n=1的情况

法1:

#include<cstdio>
using namespace std;
int main()
{
    printf("1\nN\n");
    return 0;
}

法2:

#include<cstdio>
using namespace std;
int main()
{
    printf("1\nY\n");
    return 0;
}

撒花~