using System;
public class Program
{
public static void Main()
string a = "12345";
Console.WriteLine(a.Substring(0,a.Length > 4 ? 3 : a.Length));
}