public static void Main()
Console.WriteLine("\t\tRemove Nth Index.\n");
Console.Write("Please insert a word or a phrase longer then 10 letters: ");
string str1 = Console.ReadLine();
string str2 = str1.Remove(index, 1);
Console.WriteLine($"{str1} became {str2}");