Ответ: Var   A,Sp,So:real;   i:integer;BeginSp:=0;So:=0;For i:= 1 to 10 do    Begin    Read(A);    if A<0 then So:=So+A    else Sp:=Sp+A;    End;WriteLn(‘Сумма отрицательных: ‘,So);WriteLn(‘Сумма положительных: ‘,Sp);End.