N=int(input()) M=(N+1)//2 for i in range(M): if(i>0):print(" ",end="") print(2*i+1,end="") print("")