(define (sum a b) (display "x + y = ") (display (+ a b))) (sum 20 30) (newline)
Output Results
x + y = 50