from random import *

def Alea():
    n=randint(1,15)
    if n<=8:
        A=1
    else:
        A=0
    return A

