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.
recursive_sum.py
loop_sum(n)
Example Output
Calling loop_sum(10) produces the output:
loop_sum(10)
55