(define (w a b) (f (g a) (h b) (g b) (h a))) (define (f a b c d) (+ a b c d)) (define (g a) (* a a)) (define (h a) (* a a a))