using System;
public class Program
{
public static void Main()
Console.WriteLine (test("Python", 1));
Console.WriteLine (test("Python", 0));
Console.WriteLine (test("Python", 4));
}
public static string test (string str, int n)
return str.Remove(n,1);