using System;
public class Program
{
public static void Main()
string a = "test1234";
Console.WriteLine(a.Substring(2, 5));
}