public static void Main()
Console.WriteLine("What is your age? ");
bool success = int.TryParse(Console.ReadLine(), out age);
Console.WriteLine("Is this a matinee show? Enter true or false: ");
bool success2 = bool.TryParse(Console.ReadLine(), out matinee);
if (success && success2 && age >=0)
Console.WriteLine($"The price of your ticket is {price:C}");
Console.WriteLine("Invalid Input");