def c(n):
    c=0
    for i in range(1,n+1):
        c+=i
    return c
n=int(input())
s=0
for i in range(1,n+1):
    s+=c(i)
print(s)