Commit 6a2114f7 by BellCodeEditor

save project

parent 6e07e158
Showing with 6 additions and 1 deletions
def s(n):
if n==1:
return 1
a=s(n-1)+n
return a
print(s(100))
......
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