public static void Main()
String place1 = "Europe";
String place2 = "my house";
String Thing1 = "bathtub";
String End = "Click enter to continue";
Console.Write("Name a place ");
place1 = Console.ReadLine();
Console.Write("Write a verb ");
Verb1 = Console.ReadLine();
Console.Write("Write another verb ");
Verb2 = Console.ReadLine();
Console.Write("One more Verb ");
Verb3 = Console.ReadLine();
Console.Write("Name a thing ");
Thing1 = Console.ReadLine();
Console.Write("Name a place ");
place2 = Console.ReadLine();
Console.WriteLine("Please press enter to continue");
End = Console.ReadLine();
Console.WriteLine("I was in " + place1 + " and had to go to the bathroom. So I " + Verb1 + " to the bathroom and " + Verb2 + " on the toilet. ");
Console.WriteLine("When I was done I " + Verb3 + " in my " + Thing1 + " and went back to the " + place2);