Binary Operation C++ source code homework help?
Complete the code based on the following.
Prompt the user to enter two integers.
Store the two integers.
Calculate five basic binary operations including addition (+), subtraction (-), multiplication (*), division (/), modulus (%).
Display the calculated results
i started with this
#include
using namespace std;
int main()
{
// define variables
// prompt user input
// calculation
// display output
return 0;
}