using System;
string response;
Console.WriteLine("Let's play Hangman!!!! [Y/N]");
response = Console.ReadLine();
if (response == "N" || response == "n")
{
Console.WriteLine(":(");
}