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