program raf105;
var x,y,z:integer;
begin
write('x = ');
readln (x);
write('y = ');
readln (y);
if (x<0) and (y>0)
then z:=1;
if (x>0) and (y>0)
then z:=2;
if (x<0) and (y<0)
then z:=3;
if (x>0) and (y<0)
then z:=4;
if (x<>0) and (y<>0)
then writeln('Точка лежит в ',z,' четверти')
else writeln('Точка лежит в на пересечении четвертей');
end.
program raf105;
var x,y,z:integer;
begin
write('x = ');
readln (x);
write('y = ');
readln (y);
if (x<0) and (y>0)
then z:=1;
if (x>0) and (y>0)
then z:=2;
if (x<0) and (y<0)
then z:=3;
if (x>0) and (y<0)
then z:=4;
if (x<>0) and (y<>0)
then writeln('Точка лежит в ',z,' четверти')
else writeln('Точка лежит в на пересечении четвертей');
end.