import lib; fn fib(n: int): int { if n < 2 { return n; } return fib(n - 2) + fib(n - 1); } var x = clock(); print(fib(25)); print(clock() - x);