#include<bits/stdc++.h> using namespace std; int main(){ int n,sum=1,qh=1; cin>>n; for(int i=2;i<=n;i++){ sum+=qh+i; qh+=i; } cout<<sum; return 0; }