
print "Enter some text"

s = raw_input()
L = []
while s:
	L = L + s.split()
	s = raw_input()

print L
