// Marvyn De La Torre    CS1A    Chapter 2, P. 81, #1

/****************************************************************
 * ADD TWO NUMBERS
 * --------------------------------------------------------------
 * This program assigns the values 62 and 99 to two integer
 * variables. It adds them together and displays the total.
 * --------------------------------------------------------------
 * INPUT
 * number1 : First integer
 * number2 : Second integer
 *
 * OUTPUT
 * total   : Sum of the two integers
 ****************************************************************/

#include <iostream>
using namespace std;

int main()
{
    int number1;  // INPUT - First integer
    int number2;  // INPUT - Second integer
    int total;    // OUTPUT - Sum of both integers

    // Assign the required values
    number1 = 62;
    number2 = 99;

    // Add the two numbers
    total = number1 + number2;

    // Display the result
    cout << "The sum of " << number1 << " and "
         << number2 << " is: " << total << endl;

    return 0;
}