提交时间:2024-12-24 15:19:20

运行 ID: 50574

n = int(input()) result = 1 for num in range(2, n + 1, 2): result *= num print(result)