blob: 35ba1730967313fdc95bef1d1a9defe0b7eb465c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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);
}
}
|