int main(){ int t,x; scanf("%d",&t); while(t--){ scanf("%d",&x); if(x==0 || x==45 || x==90){printf("Y\n");} else{printf("N\n");} } }