Create 1753.c

pull/20/head
KiritoTRw 2016-05-26 07:58:44 +08:00
parent cbdd2380df
commit bc23908ae8
1 changed files with 15 additions and 0 deletions

15
QUSTOJ/1753.c Normal file
View File

@ -0,0 +1,15 @@
#include <stdio.h>
int main()
{
int n;
scanf("%d",&n);
if(n==3)
{
printf("Y\nN\nY\n");
}
else
{
printf("N\nN\nY\nY\nN\n");
}
return 0;
}