﻿from random import random

def boite():
  d=0
  for k in range(100):
    g=random()
    if g<0.05:
      d=d+1
  return(d)




