class Ideone {
	public static void main (String[] args) {
		String str = "Hello";
		System.out.println(str.replaceAll(".(?=.)", "$0 "));
	}
}