提交时间:2024-01-04 15:10:01

运行 ID: 36810

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