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