(define sum-of-divisors
(lambda (n)
(define sum-from-plus
(lambda (low addend)
(if (> low n)
addend
(sum-from-plus ________ ________ ))))
(sum-from-plus 1 0)))
Q: What is the recursive call?