//Cameron Pham					CS1A					chapter 2, p. 81, #1
//
/******************************************************************************
 * 
 * Computing Sum of Two Numbers
 * 
 * _____________________________________________________________________________
 * This program computes the sum of two numbers, storing integers 62 and 99 in
 * variables, and stores the sum in the variable named total.
 * 
 * Computation is based on the formula:
 * total = numbx + numby
 * 
 * _____________________________________________________________________________
 * INPUT
 * numbx = Stores the first number (62)
 * numby = Stores the second number (99)
 * 
 * OUTPUT
 * total = Computes the sum of the first and second number (numbx + numby)
 * 
 * ****************************************************************************/
#include <iostream>
using namespace std;

int main() 
{
	int numbx;		//INPUT - Stores the first number
	int numby;		//INPUT - Stores the second number
	int total;		//OUTPUT - Computers the sum of the first and second numbers
	
	//Initialize Program Variables
	numbx = 62;
	numby = 99;
	
	//Compute Sum of Input Variables
	total = numbx + numby;
	
	//Output
	cout << "The sum of 62 and 99 is " << total << "." << endl;
	
	return 0;
}