public class echo { public static void main(String[] args) { for (String arg : args) { System.out.print(arg + " "); } System.out.println(""); } }