fork download
  1. """
  2. i = 0
  3. while i < 10:
  4. print("kuba")
  5. i = i + 1
  6. print(i)
  7.  
  8. i = 0
  9. while i <= 100:
  10. print(i)
  11. i = i + 1
  12.  
  13. i = 0
  14. while i <=100:
  15. if i%2 == 0:
  16. print(i)
  17. i = i + 1
  18.  
  19. i = 0
  20. while i <=100:
  21. if i%2 == 0 and i%10 == 2 or i%10 ==8:
  22. print(i)
  23. i = i + 1
  24.  
  25. i = 0
  26. while i <=100:
  27. if i%2 != 0 and i%10 == 1:
  28. print(i)
  29. i = i + 1
  30. """
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
Success #stdin #stdout 0.03s 63168KB
stdin
Standard input is empty
stdout
Standard output is empty