#include <iostream>
#include <bits/stdc++.h>
using namespace std;
int main()
{
long long int n,s;
while(cin>>n)
{
if(n==0)
{
break;
}
else
{
s=((n*(n+1)*(2*n+1))/6); // 1^2+2^2+3^2+..........n^2= (n*(n+1)*(2*n+1))/6 [Rule]
cout<<s<<endl;
}
}
return 0;
}
0 comments:
Post a Comment