public static void Main()
string adjective1, adjective2, bird, room, verbPast, name, noun, liquid, verbIng, bodyPart, NounPlural, verbIng2, noun2;
Console.WriteLine("Please enter an Adjective");
adjective1 = Console.ReadLine();
Console.WriteLine("Please Enter another adjective :)");
adjective2 = Console.ReadLine();
Console.WriteLine("Please enter a bird");
bird = Console.ReadLine();
Console.WriteLine("Please enter a room in a house");
room = Console.ReadLine();
Console.WriteLine("Please enter a past tense verb");
verbPast = Console.ReadLine();
Console.WriteLine("Please enter a name");
name = Console.ReadLine();
Console.WriteLine("Please enter a noun");
noun = Console.ReadLine();
Console.WriteLine("Please enter a liquid");
liquid = Console.ReadLine();
Console.WriteLine("Please enter a verb ending in -ing");
verbIng = Console.ReadLine();
Console.WriteLine("Please enter a plural body part");
bodyPart = Console.ReadLine();
Console.WriteLine("Please enter a Plural noun");
NounPlural = Console.ReadLine();
Console.WriteLine("Please enter another verb ending in -ing");
verbIng2 = Console.ReadLine();
Console.WriteLine("Lastly, enter another noun");
noun2 = Console.ReadLine();
Console.WriteLine("It was a " + adjective1 + " cold November Day.");
Console.WriteLine("I woke to the " + adjective2 +" smell of " + bird + " in the " + room + " downstairs");
Console.WriteLine("I " + verbPast + " down the stairs to see if i could help.");
Console.WriteLine("See if " + name + " nedds a fresh " + noun );
Console.WriteLine("So I carried a tray of glasses full of " + liquid+ " into the " +verbIng + "Room.");
Console.WriteLine("When I got there, I couldn't believe my " + bodyPart+ "!");
Console.WriteLine("There were " + NounPlural + " " + verbIng2+ " on the " + noun2 + "!");