//Pascal ABC.NET v3.1 сборка 1219
Var
s,s1:string;
i,k:integer;
c:char;
begin
readln(s);
s1:=copy(s,pos(' ',s),length(s)-pos(' ',s)+1);
c:=s[1];
while (pos(upcase(c),s1)<>0) do
begin
delete(s1,pos(upcase(c),s1),1);
inc(k);
end;
while (pos(lowcase(c),s1)<>0) do
begin
delete(s1,pos(lowcase(c),s1),1);
inc(k);
end;
writeln('Count=',k);
end.
Пример ввода:
Резванов Рерзялков
Пример вывода:
Count=2