Commit ca531420 by BellCodeEditor

save project

parent ca58fb80
Showing with 6 additions and 0 deletions
def number(n):
if n==1:
return 1
sum1=number(n-1)
return n+sum1
print(number(300))
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