What is the output from the following C code fragment if the
What is the output from the following C++ code fragment if the following values are the inputs to cin? 38 35 71 14 -10 int sum, num; cin >> sum; for(int j = 1; j <= 3; j++) { cin >> num; sum += num; } cout << \"Sum = \" << sum << endl;