Commit 9cbc5a96 by BellCodeEditor

auto save

parent adaf6f8a
Showing with 10 additions and 0 deletions
def f(n):
if n==1:
a=1
else:
a=n*f(n-1)
return a
b=f(5)
print(b)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment