
def quocient_fib(n):
    a, b = 1, 1
    for i in range(n):
        a, b = b, a+b
    return b/a
