fork download
  1. x = 0
  2. a = 0
  3. b = -5
  4. if a > 0:
  5. if b < 0:
  6. x = x + 5
  7. elif a > 5:
  8. x = x + 4
  9. else:
  10. x = x + 3
  11. else:
  12. x = x + 2
  13. print(x)
  14.  
Success #stdin #stdout 0.03s 9656KB
stdin
8
stdout
2