Consider a program that calculates the sum of integers passed via command line arguments. What is a potential output of such a program if it is run with java SumProgram 1 2 3?
public static void main(String[] args) {
int sum = 0;
for (String arg : args) {
sum += Integer.parseInt(arg);
}
System.out.println(sum);
}