n=int(input()) l=[] for i in range(1,n+1): if i%2==1: l.append(i) print(*l)