c = True d = False print(c and d) print(not c or d) print(c == d and True)