#!/usr/bin/env python3 def main(): t = int(input()) for _ in range(t): x = int(input()) print("N") if __name__ == "__main__": main()