Program pr;
var a,b,nul,otr,pol,c:integer;
begin
write('A=');
readln(a);
write('B=');
readln(b);
write('C=');
readln(c);
if a>0 then pol:=pol+1
else if a=0 then nul:=nul+1
else otr:=otr+1;
if b>0 then pol:=pol+1
else if b=0 then nul:=nul+1
else otr:=otr+1;
if c>0 then pol:=pol+1
else if c=0 then nul:=nul+1
else otr:=otr+1;
writeln('Положительных: ',pol);
writeln('Отрицательных: ',otr);
writeln('Нулевых: ',nul);
end.