What will the following code print if the input is 10, 20, -1? Scanner sc = new Scanner(System.in); int sum = 0, input; while ((input = sc.nextInt()) != -1) { sum += input; } System.out.println("Sum: " + sum);