fork(1) download
  1. maximum = int(input())
  2. for number in range(1, maximum + 2):
  3. if(number % 2):
  4. print("{0}".format(number))
Success #stdin #stdout 0.02s 9336KB
stdin
6
stdout
1
3
5
7