i = 1
i
exit()
range(3)
len(range(3))
exit()
from random import choice
liste = [0,1,2,3]
for i in range(10):
 print(liste.choice())
choice(liste)
exit()
