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