ProjectEuler/Problem_025.py

15 lines
162 B
Python
Raw Permalink Normal View History

2020-02-13 17:27:58 +00:00
a = 1
b = 1
c = 2
index = 3
while True:
a = b
b = c
c = a + b
index += 1
if len(str(c)) >= 1000:
break
print(index)
# Solution: 4782