using System;
public class Program
{
public static void Main()
char[] c = { 't','e','s','t' };
String s = String.Concat(c);
Console.WriteLine(s);
}