# coding: utf-8 s=[] while True: try: a=input() if a=='': break s.append(a) except(EOFError): break #print(s) for i in range(len(s)): print(s[i])