Код Ревью
Сравни свои решения
#| BEGIN (Write your solution here) |#
(define (sq x) (* x x))
(define (solution a b c)
(cond
((and (>= a c) (>= b c)) (+ (sq a) (sq b)))
((and (>= b a) (>= c a)) (+ (sq b) (sq c)))
(else (+ (sq a) (sq c)))))
#| END |#