namespace ConsoleApplication23
{
class Program
{
static void Main(string[] args)
{
string n = "asfnsjasnbdkasngowrmlaswnlofienm";
int a = n.IndexOf("as");
int b = n.IndexOf("as",(a+1));
string c = n.Substring(b,2);
Console.Write(a);
Console.Write(b);
Console.Write(c);
Console.ReadLine();
}
}
}