int SS( int n ) { int sum = 0; while( n > 0 ){ sum = sum + n*n; n = n - 1; } return sum; }