Use two variables k and total to write a for loop to compute the sum of the squares of the first 50 counting numbers, and store this value in total. thus, your code should put 1*1 2*2 3*3 ... 49*49 50*50 into total. use no variables other than k and total.