using System;
public class Program
{
public static void Main()
//Write a method that to remove the nth index character from a nonempty string.
string s = "The first problem";
Console.WriteLine(s.Remove(3));
}