Commit ab9a47e3 by BellCodeEditor

save project

parent 4c4f3bc0
Showing with 8 additions and 2 deletions
de def func(n):
\ No newline at end of file if n <=2:
return 1
else n>2:
Value = func(n-1)+func(n-2)
resunt = func(6)
print(resunt)
\ 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