using System;
public class Program
{
public static void Main()
string str = "asdfghjkl";
str = !string.IsNullOrEmpty(str) ? str.Substring(0, str.Length > 2 ? 2 : str.Length) : str;
Console.WriteLine(str);
}