编辑代码

(defun sum-greater (x y z)
   (> (+ x y) z))

(write

(sum-greater 1 4 3)
      
)