Commit 96b94148 by BellCodeEditor

auto save

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