(define (sum a b) (+ a b)) (define (sum-two a b c) ( cond ((and (> (sum a b) (sum a c)) (> (sum a b) (sum b c))) (sum a b)) ((and (> (sum a c) (sum a b)) (> (sum a c) (sum b c))) (sum a c)) (else (sum b c)) )) (sum-two 1 2 3)