public class Arguments { public static void main(String[] args) { Integer i; for (i = 0; i < args.length; i++) { System.out.println (args[i]); } } }