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