public static void Main()
Console.WriteLine("Enter a string (size 1-10):");
string word = Console.ReadLine().ToUpper();
char[] wordCharacterArray = word.ToCharArray();
for (int x = word.Length - 1; x > 1; x--)
output += wordCharacterArray[word.Length - x];
for (int k = word.Length - 2; k > 0; k--)
output += wordCharacterArray[x - 1]+ "\n";
Array.Reverse(wordCharacterArray);
string reversedWord = new string (wordCharacterArray);
output += reversedWord + "\n";
Console.WriteLine(output + "\n");