fork download
  1. x = int(input())
  2. if x % 2 == 0:
  3. x += 1
  4. for i in range(x, x + 12, 2):
  5. print(i)
  6.  
  7. #https://pt.stackoverflow.com/q/479620/101
Success #stdin #stdout 0.02s 9464KB
stdin
3
stdout
3
5
7
9
11
13