Write a program for calculating the product and quotient of two integers.

var a, b, c: integer;
d: real;
begin
read (a, b);
c: = a * b;
d: = a / b;
writeln (‘The product a to b =’, c);
writeln (‘Division a by b =’, d);
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.