Answer :
Using the python language we have that it will be possible to write a code that sums all possible divisors of a number.
Writing the code we have;
def sum_ divisors(n):
s = 0
for i in range(1, n):
if n%i == 0:
s += i
return i
See more about python at brainly.com/question/18502436
#SPJ1
