Run ID:141587
提交时间:2025-12-27 14:20:57
def fac (n): if n==1: return 1 else: return fac(n-1)*n n=int(input()) res=fac(n) print(res)