/** * This program takes inputs from the command * line, but it probably does not do what you * might expect. Why? * * After compiling, run with: * $ java SumSome3 2 3 */ class SumSome3 { public static void main(String[] args) { System.out.println(args[0] + args[1]); } }