Write a program for calculating the product of n numbers entered from the keyboard.

Program for calculating the product of n numbers entered from the keyboard in Pascal:
program qq;
var n, i: byte;
s: integer;
begin
readln (n);
for i: = 2 to n do
s: = s * i;
write (s);
end.



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.