Var x, otrc, poloz: integer;
begin
repeat
write('Введите число: ');
readln(x);
if x > 0 then inc(poloz);
if x < 0 then inc(otrc);
until x = 0;
writeln('Количество положительных чисел: ', poloz);
writeln('Количество отрицательных чисел: ', otrc);
end.