Program alpha;var a, b, c, p, v:integer;begin read (a); read (b); read (c); p:=0;// количество отрицательных чисел v:=0;// количество положительных чисел if a <0 then p:=p+1 else v:=v+1;</span> if b <0 then p:=p+1 else v:=v+1;</span> if c<0 then p:=p+1 else v:=v+1;</span> writeln ('Кол-во положительных=', v); writeln ('Кол-во отрицательных=',p);end.