class ArgumentWorld {

	// you will get an error unless you run this program with 2 or more arguments
	//
	// e.g.
	// java -cp . ArgumentWorld 56 45 (this is OK).
	// java -cp . ArgumentWorld (this is not OK).
	public static void main(String args[]) {

		System.out.println("Value 1:" + args[0]);
		System.out.println("Value 2:" + args[1]);
		System.out.println("length: " + args.length);

	}

}
