aboutsummaryrefslogtreecommitdiff
path: root/python/2-fibo_even.py
blob: 14991c96ac6eb03b6a8ecf4a154d45c5e002ea58 (plain)
1
2
3
4
5
6
7
8
9
10
a, b, c = 1, 1, 0
result = 0
while b < 4000000:
    c = a
    a = b
    b = b + c
    if b < 4000000 and b % 2 == 0:
        result += b

print(result)