public static void Main(String[] args)
Console.WriteLine("type in a person's name");
Console.WriteLine("type in the name of a place");
Console.WriteLine("type in an adjective");
Console.WriteLine("type in same place as the one from answer 2");
Console.WriteLine("type in plural noun");
Console.WriteLine("type in an adjective");
Console.WriteLine("Type in plural noun");
Console.WriteLine("Type in a place");
Console.WriteLine("Type in an action verb");
Console.WriteLine("Type in a plural noun");
Console.WriteLine("Type in a plural noun");
Console.WriteLine("Type in a noun");
Console.WriteLine("Type in an action verb");
Console.WriteLine("Type in a noun");
Console.WriteLine("Type in an adjective");
Console.WriteLine("Last summer, my mom and dad took me and(" + blank1 + ")on a trip to(" + blank2 + "). The weather there is very(" + blank3 + ")! Northern(" + blank4 + ")has many(" + blank5 + "), and they make(" + blank6 + blank7 + ")there. Many people also go to(" + blank8 + ")to(" + blank9 + ")or to see the(" + blank10 + "). The people that live there love to eat(" + blank11 + ")and are very proud of their big(" + blank12 + "). They also like to(" + blank13 + ")in the sun and swim in the(" + blank14 + ")! It was a really(" + blank15 + ")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();