Two interger adding, subtracting, dividing, and multiplying program

I am having trouble figuring out how to go about adding the math operators to this code.

#include <iostream>
#include <iomanip>
using namespace std;

int main()
{
int number1;
int number2;
char '*';
char '-';
char '+';
char '/';

cout <<"Enter two numbers:\n";
cin >> number1, number2;


}
Topic archived. No new replies allowed.