using System;
public class Program
{
public static void Main()
//Alondra De Santiago
int x;
Console.WriteLine("Give me a number.");
x = int.Parse(Console.ReadLine());
if (x % 2 == 0)
Console.WriteLine("The number " +x+ " is even.");
}
else
Console.WriteLine("The number " +x+ " is odd.");