public static void Main()
Console.WriteLine("write me a word to depict a feeling");
string feel1 = Console.ReadLine();
Console.WriteLine("a family member");
string fam = Console.ReadLine();
Console.WriteLine("an event");
string ev = Console.ReadLine();
Console.WriteLine("another event");
string pev = Console.ReadLine();
Console.WriteLine("an adjective");
string ad1 = Console.ReadLine();
Console.WriteLine("a feeling");
string feel2 = Console.ReadLine();
Console.WriteLine("a name");
string name1 = Console.ReadLine();
Console.WriteLine("an adverb");
string advb1 = Console.ReadLine();
Console.WriteLine("a noun");
string n1 = Console.ReadLine();
Console.WriteLine("a name");
string name2 = Console.ReadLine();
Console.WriteLine("an adjective");
string ad2 = Console.ReadLine();
Console.WriteLine("I am so " + feel1 + " to be at your " + fam + "'s wedding.");
Console.WriteLine("It's the biggest " + ev + " since " + pev + ".");
Console.WriteLine("I think you all are one " + ad1 + " couple.");
Console.WriteLine("truth be told, I'm a bit " + feel2 + " that " + name1 + " is off the market.");
Console.WriteLine("I saw us " + advb1 + ", but couldn't get over their " + n1 + ".");
Console.WriteLine("I'm glad that " + name2 + " is willing to put up with it " + fam + "'s wedding.");