N = int(input())

ans = [str(i) for i in range(1, N+1, 2)]
print(*ans)