提交时间:2024-01-04 14:49:35

运行 ID: 36750

def even_product(n): result = 1 for i in range(1, n+1): if i % 2 == 0: result *= i return result result = even_product(int(print())) print(result)