Given int variables k and total which have already been declared, use the for loop to calculate sum of squares of first 50 counting numbers, and store this value in total. Therefore your code must put 1*1 + 2*2 + 3*3 +... + 49*49 + 50*50 into total . Employ no variables other than k and total.