// Example 8.3. Program to read and print two integers #include using namespace std; int main() { int inInt; // I/O integer cout << "Enter an integer: "; cin >> inInt; cout << "The integer is " << inInt << "." << endl << endl; cout << "Enter another integer: "; cin >> inInt; cout << "The integer is " << inInt << "." << endl; return 0; }