using System;
using A=System.Console;
public class B
{
public static void Main()
string S1="central";
string S2="Institute";
string S3="Kokrajhar";
string S4= S1+" "+S2+" "+S3;
A.WriteLine(S4);
}