//Amari Mosley CSC5 Chapter 2, P. 81, #1
//
/**************************************************************
 *
 * COMPUTING SUM OF TWO NUMBERS
 * ____________________________________________________________
 * This program computes the sum of two integers: 62 and 99.

 * Computation is based on the formula:
 * Sum = Integer 1 + Integer 2
 * ____________________________________________________________
 * INPUT
 * 	num1	:	Integer 1
 * 
 * 	num2	:	Integer 2
 *
 * OUTPUT
 * 	sum		:	Sum of Integer 1 + Integer 2
 *
 **************************************************************/
#include <iostream>
#include <iomanip>
using namespace std;

// Defining Main Function
int main()

{
	// Defining Integer Variables
	int num1, num2, sum;
	
	// Assigning Values of Variables num1 and num2
	num1 = 62, num2 = 99;

	//Computing Sum of Values
	sum = num1 + num2;

	//Final Sum Display
	cout << "The sum of " << num1 << " and " << num2 << " is "<< sum;
}