c) open
I think this because when you're in an open space (such as starbucks) it's public for anyone to enter. I think.
<span>You should do it if C. it will take less than two minutes to complete </span>
Answer:
#include <iostream>
using namespace std;
/* Your code goes here */
int main() {
int input1, input2;
int result;
cin >> input1;
cin >> input2;
result = ComputeNum(input1, input2);
cout << result << endl;
return 0;
Explanation: