nomes ="Alexandre,Eduardo,Henrique,Murilo,Theo,André,Enrico,Henry,Nathan,Thiago,Antônio,Enzo,Ian,Otávio,Thomas,Augusto,Erick,Isaac,Pietrp,Vicente,Letícia,Maya,Sara,Yasmin"
nomes = nomes.split(",")
print(*filter(lambda nome: len(nome)>=7, nomes), sep="\n")# your code goes here