#include using namespace std; int main(){ int T; cin >> T; for (int t = 0; t < T; t++){ int x; cin >> x; if (x == 45) puts("Y"); else puts("N"); } }