10 lines
205 B
Python
10 lines
205 B
Python
nbLignes = int(input())
|
|
numLigne = 0
|
|
|
|
for loop in range(nbLignes):
|
|
numLigne = numLigne + 1
|
|
ligneTexte = input()
|
|
|
|
ligneImpaires = numLigne % 2 !=0
|
|
if ligneImpaires:
|
|
print(ligneTexte) |