﻿from random import *

def Echantillon():
    k=0
    for i in range(500):
        if random()<=0.3:
            k=k+1
    return k



