using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
int x, rem;
Console.WriteLine("Enter a code");
x = Int32.Parse(Console.ReadLine());
rem = x % 2;
if (rem == 0)
Console.WriteLine("The number is even");
}
else
Console.WriteLine("The number is odd");