# L06 E03

if (True and (_______ or not True)) and not False:
    print("green")
else:
    print("oolong")
    
    
# Is there anything that could fill in the blank in the program above
# that would cause the program to print both green and oolong?