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