namespace madlibsgenerator
static void Main(string[] args)
Console.WriteLine("hi, give me an adjective");
string adjective = Console.ReadLine();
Console.WriteLine("give me a noun");
string noun = Console.ReadLine();
Console.WriteLine("give me a verb");
string verb = Console.ReadLine();
Console.WriteLine("ok, now give me another description word");
string descriptionWord = Console.ReadLine();
string sentence = $"{adjective} {noun} {verb} {descriptionWord}";
Console.WriteLine(sentence);
Console.WriteLine("Ok, let's do this again.");
Console.WriteLine("Give me your name");
string name = Console.ReadLine();
Console.WriteLine("give me a sport");
string sport = Console.ReadLine();
Console.WriteLine("give me a sky color");
string skyColor = Console.ReadLine();
string secondPart = $"{name} plays {sport} under the {skyColor} sky.";
Console.WriteLine(secondPart);
Console.WriteLine("That was fun!");