using System;
namespace P3_16
{
    class Program
    {
        static void Main(string[] args)
        {
           Console.WriteLine("һ:"); 
           int x; 
            int.TryParse(Console.ReadLine(), out x); 
            if (CzMath.IsNumber(x)) 
                Console.WriteLine("{0}һż", x); 
            else 
                Console.WriteLine("{0}һ", x); 
             Console.ReadLine();
        }
    }
    public class CzMath
        {
            public static bool IsNumber(int x)
            {
              
               if (x % 2 == 0)
                   return true;
              else 
                   return false;
            }
        } 
}
