// Bjarne Stroustrup 3/22/2009 // Chapter 3 Exercise 4 #include "std_lib_facilities.h" // note that different compilers/SDEs keep header files in different places // so that you may have to use "../std_lib_facilities.h" or "../../std_lib_facilities.h" // the ../ notation means "look one directly/folder up from the current directory/folder" int main() try { int val1 = 0; int val2 = 0; cout << "Please enter two integer values separated by a space: "; cin >> val1 >> val2; if (!cin) error("something went bad with the read"); cout << "values : " << val1 << " " << val2 << '\n'; if (val1