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