I\'m trying to learn scheme via SICP. Exercise 1.3 reads as follow: Define a procedure that takes three numbers as arguments and returns the sum of the squares of the two la
;exercise 1.3 (define (sum-square-of-max a b c) (+ (if (> a b) (* a a) (* b b)) (if (> b c) (* b b) (* c c))))