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