from random import *
def QI():
    m=uniform(0,1)
    if m<0.11:
        return 1
    else:
        return 0
