Run ID:141495

提交时间:2025-12-25 21:14:21

def a(b): c = 1 for d in range(2, b+1): c *= d return c e = int(input()) f = a(e) print(f) # def a(b): # if b == 1: # return 1 # else: # return b * a(b - 1) # # c = int(input()) # d = a(c) # print(d)