Write a program that finds the sum, products, quotient, and difference of 2 integers. These numbers are entered from the keyboard.

Wrote in Pascal language:

Program test;
var y, x: integer;
begin
writeln (‘Enter X:’);
readln (x);
writeln (‘Enter Y:’);
readln (y);
writeln (‘Sum of X and Y:’ + (x + y));
writeln (‘The product of X and Y:’ + (x * y));
writeln (‘Private X and Y:’ + (x / y));
writeln (‘Difference between X and Y:’ + (x-y));
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.