public static void Main()
Console.WriteLine("Program to get the century from a year.");
Console.Write("Enter year : ");
int year = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("0 and negative values are not allowed.");
int century = year / 100;
Console.WriteLine("Century :" +century);