program z16_9;
uses crt;
var x,y:integer;
BEGIN
clrscr;
writeln('vvedite x');
readln(x);
writeln('vvedite y');
readln(y);
if (y>=x*x-4) and (((y>=x) and (y<=-x) and (x<0)) or ((y<=x) and (y>=-x) and (x>=0)))
then writeln('popal')
else writeln('mimo');
readln;
END.