public static void Main()
Console.Write ("Hello there, whats your name: ");
string name = Console.ReadLine ();
Console.Write ("Hello " + name + " are you doing good, or bad today?: ");
string feeling = Console.ReadLine ();
if (feeling == "good") {Console.WriteLine ("WELL GOOD FOR YOU, YOU SELFISH BOY, MAYBE THINK ABOUT WEITHER OR NOT IIIIM FEELING GOOD NEXT TIME, AND ID LET YOU CONTINUE! \nEND.");}
else if (feeling == "bad") {Console.WriteLine ("Good, join the club, you may enter!");}