var
i: integer;
a: array [1..12] of integer;
begin
for i := 1 to 12 do
readln(a[i]);
writeln ('До работы над ошибками', a);
for i := 1 to 12 do
begin
if a[i] <> 10 then
a[i]:= a[i] + 1;
end;
writeln ('После работы над ошибками', a)
end.
Язык pascal abc