#include<iostream> using namespace std; int main() { int n; cin>>n; int S=0; int t=0; for(int i=1;i<=n;i++){ t+=i; S+=t; } cout<<S; return 0; }