~azzar1/unity/add-show-desktop-key

1
2
3
4
5
6
7
def fib(n):
    a = 0
    b = 1
    for i in range(2,n+1):
        a, b = b, a+b

    return b