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