using System;
public class Program
{
public static void Main()
string testStr = "benilde";
for (int counter = 1; counter < testStr.Length; counter++)
Console.Write(testStr[counter].ToString( ));
}