public static void main(string[] args)
output("Last summer, my mom and dad took me and (person) " + "\n");
output("on a trip to (place). " + "\n");
output("The weather there is very (adjective)! " + "\n");
output("Northern (same place) " + "\n");
output("has many (plural noun), " + "\n");
pluralNoun = inputText();
output("and they make (adjective) " + "\n");
adjective1 = inputText();
output("(plural noun) " + "\n");
pluralNoun1 = inputText();
output("there. Many people also go to (place) " + "\n");
output("to (action verb) " + "\n");
actionverb = inputText();
output("or see the (plural noun). " + "\n");
pluralNoun2 = inputText();
output("The people that live there love to eat (plural noun) " + "\n");
pluralNoun3 = inputText();
output("and are very proud of their big (noun). ");
output("They also like to (action verb) " + "\n");
actionverb2 = inputText();
output("in the sun and swim in the (noun)! " + "\n");
output("It was a really (adjective) trip! " + "\n");
adjective2 = inputText();
private static double inputValue()
while (!double.TryParse(Console.ReadLine(), out result));
private static string inputText()
return Console.ReadLine();
private static output(string text);
return Console.ReadLine();