6 lines
152 B
Java
6 lines
152 B
Java
|
|
public static void main(String[] args) {
|
||
|
|
int A = Integer.parseInt(args[0]);
|
||
|
|
int B = Integer.parseInt(args[1]);
|
||
|
|
System.out.println(A + B);
|
||
|
|
}
|