Recursive Sum

Write a program recursive_sum.py that includes a recursive function loop_sum(n) that returns the sum of the numbers 1 to n inclusive.

Example Output

Calling loop_sum(10) produces the output:

55