Assuming that the user provides 99 as input, what is the output of the following code snippet? cout << "Please enter a number: "; cin >> b; if (b > 100) cout << "Your number " << b; cout << " was greater than 100" << endl; a. our number 99 was greater than 100 b. was greater than 100 c. Your number 99 d. There is no output due to compilaJon errors.