using System; class ParNepar { static void Main() { while(true) { Console.WriteLine("Unesi broj"); string s = Console.ReadLine(); if(s == "KRAJ") { break; } int n = int.Parse(s); if(n % 2 == 0) { Console.WriteLine("Paran"); } else { Console.WriteLine("Neparan"); } } } }