//Ryan Shahriyarpour CS1A Carl Argila CH2 HW Q:1
//
/*****************************************************************************
*
* Computing the sum of 2 numbers
*
*
* *******
* The goal of the progam is to compute the sum of two integers, 62 and 99, and
* store the sum in a varible.
*
*
* In order to find this, the progam will compute the following:
* Total = num1 + num2
*
*
* *******
*
* INPUT
* number 1 : Integer one: 62
* number 2 : Integer two: 99
*
* OUTPUT
* total = : The total of the two integers
*
*
****************************************************************************/
#include <iostream>
int main() {
// Specify the numbers and assign them a variable
int num1 = 62;
int num2 = 99;
// Compute the total and store them in a variable
int total = num1 + num2;
// Show the output
std::cout << "The total is " << total << std::endl;
return 0;
}
Ly9SeWFuIFNoYWhyaXlhcnBvdXIgQ1MxQSBDYXJsIEFyZ2lsYSBDSDIgSFcgUToxCi8vCi8qKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKgogKiAKICogQ29tcHV0aW5nIHRoZSBzdW0gb2YgMiBudW1iZXJzCiAqCiAqIAogKiAqKioqKioqCiAqIFRoZSBnb2FsIG9mIHRoZSBwcm9nYW0gaXMgdG8gY29tcHV0ZSB0aGUgc3VtIG9mIHR3byBpbnRlZ2VycywgNjIgYW5kIDk5LCBhbmQKICogc3RvcmUgdGhlIHN1bSBpbiBhIHZhcmlibGUuIAogKiAKICogCiAqIEluIG9yZGVyIHRvIGZpbmQgdGhpcywgdGhlIHByb2dhbSB3aWxsIGNvbXB1dGUgdGhlIGZvbGxvd2luZzoKICogVG90YWwgPSBudW0xICsgbnVtMgogKiAKICogCiAqICoqKioqKioKICogCiAqIElOUFVUCiAqICBudW1iZXIgMSAgICAgOiBJbnRlZ2VyIG9uZTogNjIKICogIG51bWJlciAyICAgICA6IEludGVnZXIgdHdvOiA5OQogKiAKICogT1VUUFVUICAgIAogKiAgdG90YWwgPSAgICAgIDogVGhlIHRvdGFsIG9mIHRoZSB0d28gaW50ZWdlcnMKICogCiAqIAogKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi8KIAogCiAjaW5jbHVkZSA8aW9zdHJlYW0+CiAKaW50IG1haW4oKSB7CgkgICAvLyBTcGVjaWZ5IHRoZSBudW1iZXJzIGFuZCBhc3NpZ24gdGhlbSBhIHZhcmlhYmxlCiAgICBpbnQgbnVtMSA9IDYyOwogICAgaW50IG51bTIgPSA5OTsKIAogICAgLy8gQ29tcHV0ZSB0aGUgdG90YWwgYW5kIHN0b3JlIHRoZW0gaW4gYSB2YXJpYWJsZQogICAgaW50IHRvdGFsID0gbnVtMSArIG51bTI7CiAKICAgIC8vIFNob3cgdGhlIG91dHB1dAoJc3RkOjpjb3V0IDw8ICJUaGUgdG90YWwgaXMgIiA8PCB0b3RhbCA8PCBzdGQ6OmVuZGw7IAogICAgcmV0dXJuIDA7Cn0=