N=int(input()) ans=[] for i in range(1, N+1): if i&1: ans.append(i) print(*ans)