Commit 5733092f by BellCodeEditor

auto save

parent bbf26fe9
Showing with 13 additions and 0 deletions
def s(n):
if n==1:
return 1
num=n*s(n-1)
return num
print(s(998))
def s(n):
if n==1:
return 1
num=n*s(n-1)
return num
print(s(998))
\ 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