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