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