public static void Main()
string restart = "tennis";
Console.WriteLine("A leap year is where there is one extra day in a year, meaning there will be 366 days that year. This happens once every 4 years. The extra day happens on February 29th. We have them so the orbit of Earth around the Sun passes and the seasons passing happen at the right date.");
Console.WriteLine("Please enter a year so we can determine whether it is a leap year or not");
string input = Console.ReadLine();
if (ulong.TryParse(input, out n))
Console.WriteLine("Enter a more recent year. This is because leap years were brought up first in the year of 1582, so it has to be after.");
Console.WriteLine("Enter a year closer to us. Please don't go so far into the future.");
Console.WriteLine(n + " is not a leap year");
Console.WriteLine(n + " is a leap year");
Console.WriteLine(n + " is not a leap year");
Console.WriteLine(n + " is a leap year");
Console.WriteLine("Error. Please make sure that you entered a positive integer");
Console.WriteLine("The Summer Olympic Games were held in Sydney, Australia");
Console.WriteLine("Wikipedia is officially launched");
Console.WriteLine("The president undergoed a colonoscopy, meaning the vice president was president for a little bit of time");
Console.WriteLine("MySpace is first out");
Console.WriteLine("Earthquake in the Indian Ocean kills 250,000 people");
Console.WriteLine("The first female Chancellor of Germany is elected");
Console.WriteLine("I was born");
Console.WriteLine("The iPhone comes out");
Console.WriteLine("The Internet evolves even more and start to boom");
Console.WriteLine("Water is discovered on the moon");
Console.WriteLine("The Deepwater Horizon oil spill in the Gulf of Mexico becomes the largest maritime oil spill in history");
Console.WriteLine("The perpetrator of the 9/11 Attacks is killed in Operation Geronimo");
Console.WriteLine("NASA's Voyager 1 spacecraft becomes the first human-made object to leave the solar system and venture into interstellar space");
Console.WriteLine("The west African Ebola virus epidemic becomes the most widespread outbreak of Ebola virus disease in history");
Console.WriteLine("Narendra Modi is elected Prime Minister of India");
Console.WriteLine("Sundar Pichai takes over as Google CEO");
Console.WriteLine("Michael Phelps, who has 28 medals in the Olympics, retires");
Console.WriteLine("Usian Bolt, the fastest person in the world, retires.");
Console.WriteLine("Roger Federer becomes the first male tennis player to win 20 grand slams");
Console.WriteLine("Massive fire at the Notre Dame Cathedral in France");
Console.WriteLine("The COVID-19 Pandemic is found out and devastates millions of families");
Console.WriteLine("A special year due to the palindrome");
Console.WriteLine("Please press q to quit or any other key to restart the program");
restart = Console.ReadLine();