Run ID:119511
提交时间:2025-05-17 17:28:11
a=int(input()) s=1 if a==0: print(1) else: for i in range(1,a+1): s=s*i print(s)