I am trying to write a simple program that asks the user to enter a number and then I will use that number to decide what the cost of the ticket will be for their given age.
The first thing you need to do is change your input variable to a string:
input
string input = Console.ReadLine();
Once you have that, there are several ways to convert it to an integer. See this answer for more info: Better way to cast object to int