public static void Main(String[] args)
Console.WriteLine("Last summer, my mom and dad took me and " + person + " on a trip to " + place + ".");
Console.WriteLine("The weather there is very " + adjective + "!");
Console.WriteLine("Northern " + place + " has many " + pluralNoun + " , and they make" + adjective + pluralNoun + " there. ");
Console.WriteLine("Many people also go to " + place + " to " + actionVerb + " or see the " + pluralNoun + ". ");
Console.WriteLine("The people that live there love to eat " + pluralNoun + " and are very proud of their big " + noun + ". ");
Console.WriteLine("They also like to " + actionVerb + " in the sun and swim in the " + noun + "! It was a really " + adjective + " 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();