python:
n = int(input('n = '))
product = 1
for i in range(1, n):
product *= i
print('Добуток чисел від 1 до', n, 'дорівнює', product)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
python:
n = int(input('n = '))
product = 1
for i in range(1, n):
product *= i
print('Добуток чисел від 1 до', n, 'дорівнює', product)