Program p1;
uses crt;
var a,g,i,s,s2:integer;
begin
I:=1;
s:=0;
while i<>0 do begin
read(a);
s:=s+a;
If s>=750 then begin
i:=0;
end;
If s<=750 then begin<br> g:=g+1;
end;
end;
If s>750 then begin
s2:=s-750;
writeln( ' Не осталось мест для ',s2);
end;
If s>750 then begin
s2:=s-a;
writeln('Всего попало на космолёт :',s2);
end;
749
writeln('Понадобилось гидов :',g);
end.