def foo(n): yield 'n' if __name__ == '__main__': for f in foo(int(input())): print(f)