Run ID:141494
提交时间:2025-12-25 21:13:16
def a(b): if b == 1: return 1 else: return b * a(b - 1) c = int(input()) d = a(c) print(d)