// Hallo -- goes over all input strings and prints them
class Hallo {

	public static void main (String args[]) {

		int i;

		System.out.print ("Hallo ");

		for (i=0; i<args.length; i++) {
		
			System.out.print (args[i] + " ");
		}

		System.out.println ("");


	}

}

