#include // A simple demonstration program ... outputs the sum of the // two input integers. int main() { int num1, num2, sum; cout << "Hi There" << endl cout << "Welcome to the Visual C++ System" << endl; cout << "Enter an integer> "; cin >> num1; cout << endl << "Enter another integer> "; cin >> num2; cout << endl; sum = num1 + num2; cout << "The sum of the two integers you entered is " << sum << endl; cout << "Bye" << endl; return(0); }