public static void Main()
Console.WriteLine("What is your age?");
int age = int.Parse(Console.ReadLine());
Console.WriteLine("You get free tickets");
else if (age > 16 && age < 50)
Console.WriteLine("You pay the standard price");
Console.WriteLine("You get free tickets");