class Segundo { public static void main (String args[]) { int n1, n2, soma; n1 = Integer.parseInt(args[0]); n2 = Integer.parseInt(args[1]); soma = n1 + n2; System.out.println(n1 + " + " + n2 + " = " + soma); System.exit(0); } }