Define a procedure that takes three numbers as arguments and returns the sum of squares of the two larger numbersI broke this problem into 3 steps Define a square function which will take one argument and return its square. (define (square x) (* x x)) ; (square 6) 36 Define a sum-of-squares