1 / 2

What code should be placed in the function's recursive call when writing a function to calculate the sum from 1 to n using recursion?

def
sum_recursive(n):
if
n
==
1:
return
1
else:
return
n
+
(n-1)