提交时间:2024-01-09 15:18:30
运行 ID: 37001
n=int(input()) i=1 l=100 sum=1 while i<=n and l>=n: if i%2==0: sum=sum*i i=i+1 print(sum)