public static void Main()
Console.Write("Hello, may I have your first name please?: ");
firstName = Console.ReadLine();
Console.Write("\nWhat is your middle name?: ");
middleName = Console.ReadLine();
Console.Write("\nand your last name?: ");
lastName = Console.ReadLine();
string fullName = firstName + " " + middleName + " " + lastName;
Console.WriteLine("\n" + fullName + " , it is nice to meet you! Now lets get started!\n");
Console.WriteLine("Now tell me your height in inches. To convert from feet multiply your height in feet by 12, then add the remaining inches.\n Example: I am 5ft 6in so I would multiple (5x12) + 6 = 66 inches.");
height = int.Parse(Console.ReadLine());
heightCm = height * 2.54;
Console.WriteLine("That makes you " + heightCm + " centimeters tall.\n\n");
Console.Write("How old are you " + firstName + "? ");
age = int.Parse(Console.ReadLine());
bool oldEnoughToVote = age >= 18;
Console.Write("TRUE or FALSE, You are a citizen of the US? ");
citizen = bool.Parse(Console.ReadLine());
bool isCitizen = citizen = true;
bool eligibleVoter = oldEnoughToVote && isCitizen;
Console.Write("\nYou are eligible to vote: " + eligibleVoter);