using System;
namespace Madlib
{
class Program
static void Main(string[] args)
Console.Write("Give me an adjective that ends in 'ly'");
string adjective = Console.ReadLine();
Console.Write("Give me an person in the class");
string person = Console.ReadLine();
Console.Write("Give me an verb ending in 'ing': ");
string verb = Console.ReadLine();
Console.Write("Give me a place");
string place = Console.ReadLine();
string result = "A(n) " + person + " " + " is " + adjective + verb + " in " + place + ". What a(n) + " + person;
Console.WriteLine(result);
}