public static void Main()
Console.Write("What is your name?");
string name = Console.ReadLine();
Console.Write("Hello "+ name + " can you tell me your favorite food?");
string food = Console.ReadLine();
Console.Write("mmm sounds nice, now can you name an object in the room with you?");
string thing = Console.ReadLine();
Console.Write("Wow I wish I had one of them! Now can you tell me your favorite place to visit?");
String place = Console.ReadLine();
Console.WriteLine("Once upon a time " + name + " was in " + place + " wondering around when suddenly they stopped and where enamored by seeing a " + thing + " as soon as they turned to walk away they slipped on a " + food + " and hit their face very hard on the ground. The end.");