提交时间:2024-12-24 15:05:36

运行 ID: 50525

n = int(input()) m =1 while n>>0: if n//2 == n/2: m = n*m n = n-1 else: n = n-1 print(m)