﻿from random import *

def X():
    a=randint(1,5)
    if a<=3:
        x=1
    else:
        x=-1
    return x
