class string_demo {
public static void main(String args[])
{
String obj = "I" + "like" + "Java";   
System.out.println(obj);     
}
}