fork download
  1. a = True
  2. b = False
  3. c = a or b
  4. d = a and b
  5. e = c or d
  6.  
  7. print(c, d, e)
  8.  
  9.  
Success #stdin #stdout 0.03s 9680KB
stdin
8
stdout
True False True