1
def fib(n):
2
a = 0
3
b = 1
4
for i in range(2,n+1):
5
a, b = b, a+b
6
7
return b
Loggerhead is a web-based interface for Breezy Version: 2.0.1