You have to use some sort of built in operators to perform this unless you are required to write a token parser and create your own interpreter and compiler. But I'm guessing since the question is quite basic, it's not asking you to do that.
You can simply do this:
int add1;
int add2;
cout << "Please enter the 2 numbers you wish to add" << endl;
cin >> add1;
cin >> add2;
//perform addition using increment operator
cout << (add1 += add2);
return 0;
EDIT - added decrement operator with less than or equal to 0 if/else:
int add1;
int add2;
int sub1;
int sub2;
cout << "Please enter the 2 numbers you wish to add" << endl;
cin >> add1;
cin >> add2;
//perform addition using increment operator
cout << (add1 += add2);
cout << "Please enter the 2 numbers you wish to subtract" << endl;
cin >> sub1;
cin >> sub2;
if((sub1 - sub2) <= 0)
{
cout << "Number is less than or equal to 0." << endl;
}
else
cout << (sub1 -= sub2);
return 0;