fork download
  1. a = True
  2. b = False
  3. c = a == b
  4. d = a != b
  5.  
  6. print(c, d)
  7.  
Success #stdin #stdout 0.04s 9584KB
stdin
8
stdout
False True