Var A:array[1..100] of integer;
i,Ko,Kp:integer;
Begin
Ko:=0;
Kp:=0;
Write('Исходный массив: ');
For i:= 1 to 100 do
Begin
A[i]:=random(41)-20;
Write(A[i],' ');
if A[i]<0 then Ko:=Ko+1<br> else if A[i]>0 then Kp:=Kp+1;
End;
WriteLn;
WriteLn('Количество отрицательных: ',Ko);
WriteLn('Количество положительных: ',Kp);
End.