public static void Main()
Console.WriteLine("Please enter a noun");
String noun = Console.ReadLine();
Console.WriteLine("Please enter an adjective");
String adjective= Console.ReadLine();
Console.WriteLine("Please enter a name");
String name= Console.ReadLine();
Console.WriteLine("Please enter a Name of a supermarket");
String nameofsupermarket= Console.ReadLine();
Console.WriteLine("Please enter another adjective");
string anotheradjective= Console.ReadLine();
Console.WriteLine("Please enter a day of the week");
String adayoftheweek= Console.ReadLine();
Console.WriteLine("Please enter a verb");
string verb= Console.ReadLine();
Console.WriteLine("Please enter an Animal");
string animal= Console.ReadLine();
Console.WriteLine("Please enter a U.S State");
string state= Console.ReadLine();
Console.Write("Taking a "+noun); Console.Write(" at the supermarket has got to be one of the most "+adjective); Console.WriteLine(" thing to do. ");
Console.Write("My friend "+name); Console.Write(" and i went to the " +nameofsupermarket); Console.WriteLine(" and took the most " +anotheradjective+ " " +noun);
Console.Write(" last " +adayoftheweek); Console.Write(" but the security gaurd caught us and we " +verb); Console.WriteLine(" To get away from him until he brought out his pet " +animal);
Console.Write(" to catch us. Man, i hate " +state);