I tested fibs function using cython, but it runs much slower than raw cpython, the code is in below:
pyx:
cdef int _fib(int n): if n == 1 or n ==