Add Two Numbers C++
Add Two Numbers C++
* Prompt user for two integers and print their sum, difference, product and
quotient
* (IntegerArithmetic.cpp)
*/
#include <iostream>
using namespace std;
int main() {
int firstInt; // Declare a variable named firstInt of the type int (integer)
int secondInt; // Declare a variable named secondInt of the type int
int sum, difference, product, quotient;
// Declare 4 variables of the type int to keep the results
return 0;
}