fork download
  1. # your code goes here
  2. '''
  3. i=1
  4. while i <=10:
  5. print(i)
  6. i +=1
  7. '''
  8.  
  9. '''
  10. i=2
  11. while i<=20:
  12. print(i)
  13. i +=2
  14. '''
  15. '''
  16. suma=0
  17. i=1
  18. while i<=50
  19. suma +=1
  20. i +=1
  21. '''
  22. '''
  23. i=10
  24. while i >=1:
  25. print(i)
  26. i -=1
  27. '''
  28.  
  29. licznik=0
  30. i=1
  31. while i <=100:
  32. if i % 5 == 0:
  33. licznik +=1
  34. i += 1
  35. print(licznik)
  36.  
  37. '''
  38. suma=0
  39. i=2
  40. while i <=20:
  41. suma +=i
  42. i +=2
  43. '''
  44. '''
  45. i=1
  46. while i <= 15:
  47. print(i)
  48. i +=2
  49. '''
Success #stdin #stdout 0.03s 9724KB
stdin
Standard input is empty
stdout
20