Commit f0423675 by BellCodeEditor

save project

parent 0f53c1f3
Showing with 7 additions and 0 deletions
def ea(num):
if num == 1:
return 1
temp = ea(num-1)
return num+temp
result = ea(100)
print(result)
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