import sys input=lambda: sys.stdin.readline().rstrip() t=int(input()) for _ in range(t): x=int(input()) if x==0 or x==45: print("Y") else: print("N")