Describe in programming language (pascal) an integer array of 30 elements and find the sum of the array elements.

var
a:array [1..30] of integer
i,s:integer
begin
s:=0;
for i:=1 to 30 do
begin
readln(a[i]);
s:=s+a[i];
end;
writeln(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.