public static void Main()
Console.WriteLine("Hello there! What is your name?");
string name = Console.ReadLine();
Console.WriteLine("Hi there, {0}, how are you doing today? Press 1 for good, press 2 for bad.", name);
if(int.TryParse(Console.ReadLine(), out result))
Console.WriteLine("That is nice to hear, {0}!", name);
Console.WriteLine("Ah man, that shit sucks {0}", name);
Console.WriteLine("Invalid term");
Console.WriteLine("Invalid term");