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