Write a program that prints the product of numbers from 1 to 13 (13!)

The solution is provided in a programming language such as Python 3.0.
Let’s set the variable a equal to one, since the product from 1 to 13 starts from 1.
Next, using the for loop, we will calculate the product we need.
(The program specifies a range from 1 to 14, since the last number is not taken into account in Pytohn (that is, when writing instead of 14 – 13, then the program would calculate 12!))
a = 1
for i in range (1,14):
a = a * i
print (a)



One of the components of a person's success in our time is receiving modern high-quality education, mastering the knowledge, skills and abilities necessary for life in society. A person today needs to study almost all his life, mastering everything new and new, acquiring the necessary professional qualities.