from itertools import repeat, takewhile


print(tuple(takewhile(bool, map(lambda _: input(), repeat(None)))))