// SumTwo.java: print the sum of the first two arguments class SumTwo { public static void main(String[] args) { int x = Integer.parseInt(args[0]); int y = Integer.parseInt(args[1]); System.out.print("The sum is: "); System.out.println(x+y); } }