1470H.py 109 B

1234567
  1. while True:
  2. n = int(input().strip())
  3. s = 1
  4. for i in range(n, 1, -2):
  5. s *= i
  6. print(s)