提交时间:2024-10-22 14:44:05
运行 ID: 47448
a = int(input()) n = 1 for i in range(1,a+1): b = i if b%2==0: n = n*i print(n)