提交时间:2025-06-03 15:16:32

运行 ID: 57699

N = int(input()) result = 1 for i in range(1, N + 1): if i % 2 == 0: result *= i print(result)