N = int(input()) A = 0 for i in range(N): A = A + (i + 1) print(A)