Create a program that calculates the sum of the numbers a and b, the values of which are entered from the keyboard.

program summa;
var a, b, s: integer;
begin
readln (‘Enter number a’);
readln (‘Enter number b’);
s: = a + b;
writeln (‘The sum of a and b =’, 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.