Find the product of the values of two variables and display.

program zz1;
var a, b, p: integer; // set up variables
begin
write (‘enter the value of the first variable’); // enter the value of the first variable from the keyboard
read (a);
write (‘enter the value of the second variable’); // enter the value of the second variable from the keyboard
read (b);
p: = a * b; // find the product of the values of the two entered variables
write (‘product of the values of two variables =’, p); // display the answer
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.