public static void Main(string[] args)
Console.WriteLine("Number guessing game! Which difficulty would you like to play: easy, medium, hard, or insane? (This program is case sensitive. Put your chosen difficulty in all lower-case.");
string chosenDifficulty = Console.ReadLine();
if (chosenDifficulty == "easy")
Console.WriteLine("Guess my number! It is between 1 and 10!");
else if (chosenDifficulty == "medium")
Console.WriteLine("Guess my number! It is between 1 and 50!");
else if (chosenDifficulty == "hard")
Console.WriteLine("Guess my number! It is between 1 and 100!");
else if (chosenDifficulty == "insane")
Console.WriteLine("Guess my number! It is between 1 and 500!");
else if (chosenDifficulty == "secret")
Console.WriteLine("Wow, how did you know about my secret difficulty?? Anyways... Guess my number! It is between 1 and 5000!");
Console.WriteLine("Hey, dumbass. That isn't a difficulty. Run the program again if you want to *actually play*");
int guess = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Congrats, you guessed correctly! Run the program again to play again!");
Console.WriteLine("Too high! Guess again.");
Console.WriteLine("Too low! Guess again.");