public static void Main()
Console.WriteLine("A leap year is a year, occurring once every four years, that has 366 days including Feb. 29th as an intercalary day.");
{ Console.WriteLine("Please enter a year.");
string input = Console.ReadLine();
if(uint.TryParse(input, out year))
{Console.WriteLine("Please enter a positive number.");
ulong leapyear = (year%4);
Console.WriteLine("Don't look so far into the future.");
Console.WriteLine("Please enter a more recent year because leap years only began in 1582.");
Console.WriteLine("This is a leap year.");
Console.WriteLine("This is a common year.");