import random
lst = ['puk', 'pok', 'kek']
while lst:
	i = random.randrange(len(lst))
	print(lst.pop(i))