public static void Main()
Console.WriteLine("Mad Libs Program");
Console.WriteLine("(c) 2017 by Evan Ru");
Console.WriteLine("Give me a famous person.");
string person = Console.ReadLine();
Console.WriteLine("Your famous person is " + person + ".");
Console.WriteLine("Give me another famous person.");
string guy = Console.ReadLine();
Console.WriteLine("Your other famous person that you chose is " + guy + ".");
Console.WriteLine("Here is the sentence that you have created.");
Console.WriteLine(person + " is at the beach. " + person + " sees a " + guy + ". A demigod named " + person + " flies in and takes the " + guy + ".");
Console.WriteLine(person + " cries for hours because " + guy + " is so good looking.");
Console.WriteLine("I don't hear you laughing. Tell me if you are laughing.");
string laughing = Console.ReadLine();
if (laughing == "laugh noise")
Console.WriteLine("Thanks.");
Console.WriteLine("Here is another thing to make you laugh.");
Console.WriteLine("What is your name?");
string name = Console.ReadLine();
Console.WriteLine(name + " is ugly. I am pretty, and you are ugly.");
string ugly = Console.ReadLine();
if (ugly == "I am not ugly")
Console.WriteLine("You are fake news.");
Console.WriteLine("You might need plastic surgery. Here is a good surgon I know: 1-800-YOU-UGLY");