def chengji(n):
if n == 0:
return 1
return chengji(n-1)*n
print(chengji(n))

05-11 22:38