public static void Main()
Console.Write("What is your First and Last Name? ");
first_lastName = Console.ReadLine();
Console.Write("Please Select 1, 2, or 3.");
a = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("{0} have selected 1 and you will receive a new car", first_lastName);
Console.WriteLine("{0} have selected 2 then you will receive a new boat.", first_lastName);
Console.WriteLine("{0} have selected 3 and you will recieve a new House.", first_lastName);
Console.WriteLine("Please select only 1, 2, or 3");