Complete the square sum function so that it squares each number passed into it and then sums the results together. For example, for [1, 2, 2] it should return 9 because 1^2 + 2^2 + 2^2 = 9.
Summation Write a program that finds the summation of every number from 1 to num. The number will always be a positive integer greater than 0.