I am trying to find the Big-O for the Summing function. I know the two loops usually mean that N^2 run time but this is just one N but j is running many more than N itself.
int Summing( int n )
{
    int i 
    int j
    int s = 0;
    for(i=0; i < n; i++){
        for(j=0; j < i; j++) {
            s += i*i;
          }
    }
 
     
    