Run ID:141589
提交时间:2025-12-27 14:24:04
def fac(n): if n==1: return 1 return fac(n-1) * n res = fac( int(input()) ) print(res)