//Jacob Silvestre		CSC5		Chapter 2, P. 81, #1 
//
/***************************************************************************************** 
  *
  * SUM OF TWO NUMBERS
  *______________________________________________________________________________________
  * This program stores the integers 62 and 99 in two variables, calculates their sum, and  
  * stores it in a variable named total. 
  * Computation is based on the formula: 
  * total = first + second 
  *
  *______________________________________________________________________________________
  * INPUT
  * 	first: First number
  *	   second: Second number
  *
  * OUTPUT
  *	total		: Sum of the two numbers
  *22
  *
  ***************************************************************************************/
#include <iostream>
using namespace std;
int main() 
{
	int first;	//INPUT - First number
	int second; //INPUT - Second number
	int total; //OUTPUT - Sum of the two numbers

	// 
	// Initialize Program Variables
		first = 62; 
		second = 99; 
	// 
	// Calculate Sum 
	   total = first + second; 
	// 
	// Output Result
 	   cout << "The sum is " << total << endl; 
	return 0;
}