using System;
public class Program
{
public static void Main()
string text= ("I am happy");
Console.WriteLine(text.Substring(0, 4));
}