var c,a,y,x,x2,S:real;
Begin
writeln('x=, y=');
readln(x,y);
if (x<=-sqrt(6)) and (y<=5) then
writeln('prin') else
if (x>=-sqrt(6)) and (y<=x*x-1) and(y>=0) then
writeln('prin') else
if (x<=sqrt(6)) and (y>=5) and (y<=x*x-1) then
writeln('prin') else
if (x>=sqrt(6)) and (y<=5) and (y>=0) then
writeln('prin')
else
writeln(' ne prin');
readln;
end.