public static void Main()
Console.WriteLine("Megan's Mad Libs ");
Console.Write("enter an adjective: ");
string adjective = Console.ReadLine();
Console.Write("enter a subject: ");
string noun = Console.ReadLine();
Console.Write("enter a past tense verb: ");
string adverb = Console.ReadLine();
Console.Write("enter an item: ");
string item = Console.ReadLine();
Console.Write("enter a number: ");
string number = Console.ReadLine();
Console.Write("enter a verb (-ing): ");
string verb = Console.ReadLine();
Console.Write("enter a substance: ");
string substance = Console.ReadLine();
string result = "A(n)" + adjective + " " + noun + " " + adverb + " to the store with friends and bought some " + item + "; they got " + number + " dollars back in change. As they were " + verb + " back home, they tripped and fell into " + substance + " which caused them to slide in the sewers."
+ " They saw a clown, that soon bit their arm off, as they slowly died.";
Console.WriteLine(result);