program Project1;
{$APPTYPE CONSOLE}
uses
SysUtils;
const ch = 'a';
var user,temp:string;
i:byte;
begin {main}
temp:='';
write('Write me a word:');
readln(user);{catch the word...}
{analize it,char by char}
for i:=1 to length(user)do begin
if user[i]<>ch then temp:=temp+user[i];
end;
writeln('I deleted the whole ''',ch,''' character from that string.');
writeln('So ,the result is: ',temp);
readln;
end.