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