N = int(input()) t = [str((i + 1) * 2) for i in range(N // 2)] if N % 2 == 1: t.append(str(N // 2)) print(' '.join(t))