using System;
public class Program
{
public static void Main()
int x = int.Parse(Console.ReadLine());
int y= 0;
if(x % 2 == 0)
Console.WriteLine("Your number is even ");
y = x / 2;
}
else
y = (x + 1) / 2;
Console.WriteLine( "Your number is odd ");
Console.WriteLine( "The whole number you get when you divide your number by 2 is : "+y);