9 lines
115 B
Python
9 lines
115 B
Python
n = int(input())
|
|
|
|
words = []
|
|
for _ in range(n):
|
|
words.append(input())
|
|
|
|
for word in words[::2]:
|
|
print(word)
|