//Zachary Abdollahi CS1A Chapter 2, P. 81, #1
//
/*****************************************************************************
* CALCULATE SUM OF NUMBERS
* ___________________________________________________________________________
*
* This program accepts two integers and computes the sum of the two integers.
*
* Computation is based on the formula:
* Total = num1 + num2
* ___________________________________________________________________________
* INPUT
* num1 : First integer summand
* num2 : Second integer value (99)
*
* OUTPUT
* total = : Sum of num1 and num2
****************************************************************************/
#include <iostream>
#include <iomanip>
using namespace std;
int main() {
// Store the given integers in variables
int num1; //First addend
int num2; //Second addend
int total; //Sum of first and second addends
num1 = 62; //Assign value to first addend
num2 = 99; //Assign value to second addend
// Calculate the sum and store it in a variable named 'total'
total = num1 + num2;
// Output the result
cout << "The sum of " << num1 << " and " << num2 << " is: " << total << endl;
return 0;
}