class ReplaceFragmentIdiom
{
	public static void main (String[] args) throws java.lang.Exception
	{
		String x = "test message!";
		String y = "es";
		String z = "aster ";
		
		String x2 = x.replace(y, z);
		
		System.out.println(x2);
	}
}