ℹ️ Your data is safe here... unless you make the SNIP gods angry. And let's just say they have a really bad sense of humor.

From admin, 1 Week ago, written in Python.
Embed
  1. def fib(n):
  2.   a, b = 0, 1
  3.   for _ in range(n):
  4.     a, b = b, a+b
  5.   return a
  6. print(fib(10))


captcha