/**
 * Printing the normal way using System.out.println
 *
 */

public class P1
{
    /**
     * main method 
     */

    public static void main (String[ ] args)
    {        

        System.out.println("This is a lot of typing");

        System.out.println("You have entered " + args.length + " arguments");

        for (int i = 0; i < args.length; i++)                          //for all incoming arguments
            System.out.println("argument " + i + "..." + args[i]);      //print them
    }        
}