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