You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
317 B

nbLivres = int(input())
longMin = int(input())
titreLivre = [0] * nbLivres
resumeLivre = [0] * nbLivres
for idLivre in range(nbLivres):
titreLivre[idLivre] = input()
resumeLivre[idLivre] = input()
for idLivre in range(nbLivres):
if len(resumeLivre[idLivre]) < longMin:
print(titreLivre[idLivre])