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