Write a program for finding the sum of three integers.

Program z_1;

var

x, y, z, sum: integer;

begin

sum: = 0;

writeln (‘Enter the first number’);

readln (x);

writeln (‘Enter the second number’);

readln (y);

writeln (‘Enter the third number’);

readln (z);

Sum: = x + y + z;

writeln (‘The sum of the three numbers you entered is equal to:’, sum);

readln;

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.