Commit 1b8f781c by BellCodeEditor

save project

parent 95d330e4
Showing with 2 additions and 2 deletions
...@@ -3,4 +3,4 @@ def fibonacci(num): ...@@ -3,4 +3,4 @@ def fibonacci(num):
return 1 return 1
else: else:
return fibonacci(num-1) + fibonacci(num-2) return fibonacci(num-1) + fibonacci(num-2)
print(fibonacci(6)) print(fibonacci(600))
\ No newline at end of file \ 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