def factorial(n):
if n == 0:
return 1
else:
return n * factorial(n-1)

result = factorial(10)


print("The factorial of 10 is:", result)

What is the output

Posted on by