public static void Main()
string word = "something".ToUpper();
Console.WriteLine("Guess a " + word.Length + " letter word");
guess = System.Console.ReadLine().ToUpper();
Console.WriteLine("Guess a " + word.Length + " letter word");
for (int i = 0; i < word.Length; i++)
output = output + word[i];
Console.WriteLine(output);
Console.WriteLine("You guessed the word!");