﻿from random import *

def Jeu():
    if random()<=1/3:
        p=1
    else:
        p=0
    return p

