Skip to content
Snippets Groups Projects
Select Git revision
  • 974509ac076771976e7fe367c07ecda7d920a836
  • devel default
  • master
  • fo
  • jirka/typing
  • fo-base
  • mj/submit-images
  • jk/issue-96
  • jk/issue-196
  • honza/add-contestant
  • honza/mr7
  • honza/mrf
  • honza/mrd
  • honza/mra
  • honza/mr6
  • honza/submit-images
  • honza/kolo-vs-soutez
  • jh-stress-test-wip
  • shorten-schools
19 results

imports.py

Blame
  • first-input.py 121 B
    print("Do kolika chceš počítat?")
    n = int(input())
    
    i = 1
    
    while i <= n:
        if i%2 == 0:
            print(i)
        i += 1