Commit 4fb35d27 by BellCodeEditor

save project

parent b16f38f3
Showing with 7 additions and 0 deletions
def sum(num):
if num <= 2:
return 1
i = sum(num-1) + sum(num-2)
return i
print(sum(8))
\ 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