#-*- coding: utf-8 -*-
#un script qui compte le nb de petits chats
import time
print("Combien de petits chats?")

nbChats = input()

nbChats = int (nbChats)


for compteur in range(1, nbChats):
	print(str(compteur) + " petits chats")
	time.sleep (1)


print("This is the END")