#include // The C++ input and output definitions. #include // The C++ input and output manipulator definitions. void main(void) { // Declarations: // Define two general purpose integers int i, j; // Executable statements: // Entering a single integer: cout << "Enter a value for i: "; cin >> i; cout << "The value you entered was: " << i << endl; // Entering two integers: cout << "Enter values for i and j: "; cin >> i >> j; cout << "The values you entered were: " << i << " and " << j << endl; cout << "Their sum is: " << i + j << endl; }