﻿from random import *

def X():
    x=0
    for i in range(350):
        a=random()
        if a<0.15:
            x=x+1
    return x


