﻿from random import *
from math import *

def X():
    a=random()
    if a<=pi/4:
        x=1
    else:
        x=0
    return x


