from random import *


def tirage():
    return int(expovariate(0.05))

#4 coups

L = [tirage() for i in range(15)]

L.sort()

x = tirage()