N=int(input()) if N==1: print(1) exit() D=[0]*(10**5+1) A=[] for i in range(1,N+1): if i%2==1: A.append(i) print(*A)