Added Problem 25

This commit is contained in:
Robert 2020-02-13 18:27:58 +01:00
parent 0738ebf590
commit 2eab0646d5

15
Problem_025.py Normal file
View file

@ -0,0 +1,15 @@
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