✪ Choose the correct option.
Show the output of the following code:
def f2(n, result):
if n == 0:
return0
else:
return f2(n – 1, n + result)
print(f2(2, 0))