/**********************************************************************************
* PROGRAMMED BY : DAISY CONTRERAS
* CLASS : CSC 5
* SECTION : MW 2:20-5:30PM
* ASSIGNMENT : CHAPTER 2 QUESTION #1
*********************************************************************************/
#include <iostream>
using namespace std;
/*********************************************************************************
*
* STORE THE SUM OF TWO NUMBERS
* _______________________________________________________________________________
* This program stores the sum of two integers as input. This sum will be stored
* in a variable called total.
*
* INPUT
* number1 : This is the integer 62.
* number2: This is the integer 99
* total: The total of number1 and number2.
*
* ******************************************************************************/
int main()
{
int number1;
number1 = 62; //INPUT - The first number is an integer that is 62
int number2;
number2 = 99; //INPUT - The second number is an integer that is 99
int total;
total = number1 + number2; //INPUT - The sum of the two integers
return 0;
}