public static void Main()
Console.WriteLine("This Madlibs presents the adventures of Wonder Ward and Mega Meyers");
Console.WriteLine("Name a superpower.");
string power = Console.ReadLine();
Console.WriteLine("Name another superpower.");
string power2 = Console.ReadLine();
Console.WriteLine("Name a super villan.");
string villan = Console.ReadLine();
Console.WriteLine("Name a threat .");
string threat = Console.ReadLine();
Console.WriteLine("Name a name.");
string name = Console.ReadLine();
Console.WriteLine("Name a popular city.");
string city = Console.ReadLine();
Console.WriteLine("One day Mega Meyers and Wonder Ward were skirting around town and got bit by a spider and both got super powers ");
Console.WriteLine("Mega Meyers discovered he had "+ power + " and Wonder Ward could now had " + power2);
Console.WriteLine("The " + villan + "had a bad childhood and wanted to take revenge and wanted to " + threat);
Console.WriteLine(villan + "wanted to start at "+ city + " Where people were the meanest to him");