Run ID:141588
提交时间:2025-12-27 14:21:54
def fac(n): if n==1: return 1 else: return fac(n-1)*n m=int(input()) res=fac(m) print(res)