SumPower(n){ var i,toplam; read n; toplam =0; i=1; while(i<=n){ toplam = toplam + i*i; i=i+1; } println toplam; }