from random import *

def Echantillon():
    k=0
    for i in range(200):
        if random()<=0.25:
            k=k+1
    return k

