using System;
public class Program
{
public static void Main()
int x;
Console.WriteLine("input the number ");
x = Convert.ToInt32(Console.ReadLine());
if (x % 2 == 0)
Console.WriteLine(" the is even");
}
else
{ Console.WriteLine(" the number is odd");