//Andres Guzman CSC5 Chapter 2, P. 81, #1
//
/**************************************************************
*
* COMPUTE TOTAL SUM OF TWO NUMBERS
* ____________________________________________________________
* This program computes the total sum of integers 62 & 99
* 
* Computation is based on the formula:
* total = 62 + 99
* ____________________________________________________________
* INPUT
* six : The integer 62
* nin : The integer 99
*
* OUTPUT
* total : The sum of the two integers
*
**************************************************************/
#include <iostream>
using namespace std;

int main ()
{
	int six;
	int nin;
	int total;	
//
//Initializing Variables
	six = 62;
	nin = 99;
//
//Compute total sum
	total = six + nin;
//
//Output result
	cout << total << endl;
	return 0;
}