program parne; {$APPTYPE CONSOLE} var n:int64; begin readln(n); if n mod 2=0 then writeln ('p') else writeln('ne p'); readln; end.