Aman Swarnkar
Results
1
comments of
Aman Swarnkar
yeah the code should be **def f(n): if n==0: return 1 else: return f(n-1)+100 n=int(input()) print(f(n))** according to the question we have to return 1 for f(0) > Question 65...