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