def factorial(x): if x==1: return 1 return factorial(x-1) + x factorial(10000)