public static void Main()
Console.WriteLine("Please type in your name");
string userInput = Console.ReadLine();
Console.WriteLine("Please type in your age");
string ageInputString = Console.ReadLine();
int ageInput = Int32.Parse(ageInputString);
int yearsUntilThirty = 30 - ageInput;
Console.WriteLine(string.Format("Your name is {0} and it is {1} years until you are 30", userInput, yearsUntilThirty));