Write a program in Pascal. Find the sum of 20 numbers entered from the keyboard.

Pascal:
program z;
var i,a,s,N:integer;
begin
writeln(‘kol-vo skladivaemih chisel’);
readln(N);
for i:=1 to N do begin
write(‘chislo=’);
readln(a);
s:=s+a;
end;
writeln(‘summa=’,s);
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.