/* PROGRAM AUTHOR: FSU ID: RECITATION SECTION NUMBER: TA NAME: COURSE INFORMATION: Project Number: Due Date: SUMMARY This is the first function that caluculte the sum of two integers. INPUT firstInteger - storage for the first integer secondInteger - storage for the second integer BAD DATA CHECKING: N/A. OUTPUT sum - storage for the sum. DATA STRUCTURES N/A. ASSUMPTIONS All inputs should be integers. */ #include using namespace std; int main () { // variable and constant declaration int sum; // storage for the sum int firstInteger, // storage for the first integer secondInteger; // storage for the second integer // running code cout << "=== Given the sum of two integers ===" << endl; cout << "Enter the first integer: "; cin >> firstInteger; cout << "Enter the second integer: "; cin >> secondInteger; sum = firstInteger + secondInteger; cout << firstInteger << " + " << secondInteger << " = " << sum << endl; return(0); }