1.
var a.b.c,k:integer;
begin
readln(a,b,c);
if a<0 then k:=k+1;<br>if b<0 then k:=k+1;<br>if c<0 then k:=k+1;<br>writeln('koli4estvo=',k);
end.
2.
var a,b,c,d,i,x:integer;
begin
readln(x);
for i:=a to b do
if i=x then writeln('Prinadlejit ot ',a,'do',b,'!');
for i:=c to d do
if i=x then writeln('Prinadlejit ot ',c,'do',d,'!');
end.