public static void Main()
Console.WriteLine("Please enter a positive integer.");
string input = Console.ReadLine();
if (ulong.TryParse(input, out n))
Console.WriteLine(n + " is old ");
Console.WriteLine(n + " is even " );
{Console.WriteLine("Please be sure to enter a positive integer.");