fork download
  1. print(True==0)
  2. print(True==1)
  3. print(True==2)
  4. print(True==3)
  5. if 0:
  6. print("0")
  7. if 1:
  8. print("1")
  9. if 2:
  10. print("2")
  11. if 3:
  12. print("3")
Success #stdin #stdout 0.02s 9180KB
stdin
Standard input is empty
stdout
False
True
False
False
1
2
3