fork download
x = int(input())
if x % 2 == 0:
	x += 1
for i in range(x, x + 12, 2):
    print(i)

#https://pt.stackoverflow.com/q/479620/101
Success #stdin #stdout 0.02s 9464KB
stdin
3
stdout
3
5
7
9
11
13