def factorial(n): """Compute the factorial of an integer.""" # There is something wrong with this function... what is it? return n * factorial(n-1) print(factorial(5))