Commit 283079a8 by BellCodeEditor

save project

parent b16f38f3
Showing with 11 additions and 0 deletions
def f(n):
if n==1 or n==2:
return 1
else:
return f(n-1)+f(n-2)
i=1
while f(i)<20:
i=i+1
print(i)
\ 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