public class MessageS

{
     public static void main ( String args [])

	{
	   String Message1 = "Start";
	   String message2 = Message1.substring(0,4)+"s"; // take out the first 4 charecters of the string and and an s
	   System.out.println(message2);
	}
}// end main


