Java - Command Line Arguments
You want to write a Java program that sums two numbers given as command line arguments. Which code snippet correctly converts the arguments and prints the sum?
public class Sum {
public static void main(String[] args) {
// Fill in the blanks
}
}