using System;
namespace checkAddorEven
{
public class Program
public static void Main(String [] args)
int n;
Console.WriteLine("Enter the n value : ");
n= int. Parse (Console.ReadLine()) ;
if (n % 2==0)
Console.WriteLine(n + " is even ");
}
else {
Console.WriteLine(n + " is odd");