Var st:string;
i:integer;
begin
writeln('Введите строку:');
readln(st);
for i:=1 to length(st) do begin
if st[i]='a' then
st[i]:='o';
end;
writeln(st);
end.
var st:string;
i:integer;
begin
writeln('Введите строку:');
readln(st);
for i:=1 to length(st) do begin
if st[i]='a' then
delete(st,i,1);
end;
writeln(st);
end.