class Main {
	public static void main (String[] args)	{
		String str = " Hello Word";
		str = str.replace("Hello", "Olá");
		System.out.println(str);
	}
}

//https://pt.stackoverflow.com/q/75000/101