public static void Main()
Console.WriteLine("Please enter a number, integer, or decimal");
string input=Console.ReadLine();
if (int.TryParse(input, out n))
Console.WriteLine("Yay you did it! Good job!");
Console.WriteLine("You have entered an invalid answer, please try again");