Code Review
Compare your solutions
#| BEGIN (Введите свое решение) |#
(define (cube x) (* x x x))
(define (square x) (* x x))
(define (cubic a b c)
(lambda (x) (+ (cube x)
(* a (square x))
(* b x)
c)))
#| END |#