13 lines
352 B
Python
13 lines
352 B
Python
nbLivres = int(input())
|
|
titreLivre = [0] * nbLivres
|
|
longTitre = [0] * nbLivres
|
|
taille = 0
|
|
|
|
for idLivre in range(nbLivres):
|
|
titreLivre[idLivre] = input()
|
|
longTitre[idLivre] = len(titreLivre[idLivre])
|
|
|
|
for idLivre in range(nbLivres):
|
|
if longTitre[idLivre] > taille:
|
|
taille = len(titreLivre[idLivre])
|
|
print(titreLivre[idLivre]) |