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