Jan-30-2019, 04:44 PM
from functools import lru_cache responce = input('what number') @lru_cache() def fibonacci(n): return fibonacci (responce-1) + (responce - 2) print('your number has been fibonaccied')It stil does not use the input in the function?