﻿from random import *

def Echantillon():
    n=0
    for i in range(60):
        if random()<=0.08:
            n=n+1
    return n

