public static void Main()
Console.WriteLine("Please Enter the type of household filling. ( 1.)Single 2.)Married 3.)Head of Household");
Console.WriteLine("--------------------------------------------------------------------------------------");
string holdFilling = Console.ReadLine();
Console.WriteLine("Please enter your yearly income amount in U.S. Dollars (Ex. 10, 100, 1000)");
Console.WriteLine("--------------------------------------------------------------------------------------");
string yearIncome = Console.ReadLine();
Console.WriteLine("You are filing Single, with an income of " + yearIncome);
Console.WriteLine("You will fall into the 12% tax bracket. You will owe " + yearIncome);
Console.WriteLine("You are filing Married, with an income of " + yearIncome);
Console.WriteLine("You will fall into the % tax bracket ");
Console.WriteLine("You are filing as Head of Household, with an income of " + yearIncome);
Console.WriteLine("You did not enter a valid responce.");