def funw(num,product): return fune(num,product) def fune(num,product): if num==1: return product else : return fune(num-1,num *product) print(funw(6,1))
def funw(num,product): return fune(num,product) def fune(num,product): if num==1: return product else : return fune(num-1,num *product) print(funw(6,1))