def solve(): N = int(input()) ans = [] for i in range(1,N+1,2): ans.append(i) return ans print(*solve())