N=int(input())
res=[i for i in range(N+1) if 2*i>N]
print(*res)