Exemplo n.º 1
0
Arquivo: p025.py Projeto: doboy/euler
from math import log10
from utils import fibGen

f, i = fibGen(), 1
while log10( next( f ) ) < 999:
    i += 1

print i