public static void Main()
Console.Write(" What is your first name? ");
Console.Write("what is your last name? ");
Console.Write("What grade are you currently in? ");
Console.Write("What day is your favorite day of this week? ");
Console.Write("What month do you like the best?");
Console.WriteLine("===========================================");
Console.WriteLine(" Base on the above information we can state the following");
Console.WriteLine(LN + " ," + FN);
Console.WriteLine(" You started that you were in the " + G + ".");
Console.WriteLine(" Your favorite day of the week is " + FW+ ".");
Console.WriteLine(" You like the month of " + M + " the best.");
Console.WriteLine("It can also be written as the following: ");
Console.WriteLine(FN + " " + LN+ " you are in the " + G + " grade. ");
Console.WriteLine(" Your favorite day of the week is " +FW+ " and you like the month of " +M+ ".");
Console.WriteLine("=============================================================");