public static void Main(String[] args)
Console.WriteLine("Time to Mablib an adLib! I will ask you for a number of words. Let's start with a person, please give me a name.");
Console.WriteLine("Now I need a place.");
Console.WriteLine("An adjective, please.");
Console.WriteLine("How about a plural noun?");
Console.WriteLine("Another adjective.");
Console.WriteLine("Now another plural noun.");
Console.WriteLine("A second place.");
Console.WriteLine("I demand an ACTION verb.");
Console.WriteLine("A plural noun if you don't mind.");
Console.WriteLine("One last noun of a plural nature.");
Console.WriteLine("A singluar noun if you please.");
Console.WriteLine("One last verb filled with action.");
Console.WriteLine("Almost done. One more noun.");
Console.WriteLine("And lastly, a third adjective.");
Console.WriteLine("My Summer Trip");
Console.WriteLine("Last summer, my mom and dad took me and " + person + " on a trip to " + place1 + ".");
Console.WriteLine("The weather there is very " + adjective1 + "!");
Console.WriteLine("Northern " + place1 + " has many " + pluralNoun1 + ", and they make " + adjective2 + " " + pluralNoun2 + " there.");
Console.WriteLine("Many people also go to " + place2 + " to " + actionVerb1 + " or see the " + pluralNoun3 + ".");
Console.WriteLine("The people that live there love to eat " + pluralNoun4 + " and are very proud of their big " + noun1 + ".");
Console.WriteLine("They also like to " + actionVerb2 + " in the sun and swim in the " + noun2 + "!");
Console.WriteLine("It was a really " + adjective3 + " trip!");
private static void input(out double result)
while (!double.TryParse(Console.ReadLine(), out result));
private static void input(out int result)
while (!int.TryParse(Console.ReadLine(), out result));
private static void input(out Boolean result)
while (!Boolean.TryParse(Console.ReadLine(), out result));
private static void input(out string result)
result = Console.ReadLine();