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