1: //TestCLP.java
2:
3: public class TestCLP
4: {
5: public static void main(String args[])
6: {
7: /*
8: System.out.println(args[0] + " " + args[1]);
9:
10: for (int i=0; i<args.length; i++)
11: System.out.println(args[i]);
12: */
13:
14: System.out.println
15: (Integer.parseInt(args[0]) * Integer.parseInt(args[1]));
16: }
17: }
18: