I know you guys are gonna laugh but this is all I could come up with. it succeeded but doesn't work though. I have a feeling i need to put in a loop in here but not sure where to go with it. What the hell am I doing wrong?
Here is something I just wrote up. Basicly type a number, press enter, type another number, and it says what the sum is. It should be easy to make options whether to do addition, subtraction, ect.
#include <iostream>
#include <string>
#include <sstream>
using namespace std;
int main () {
int a,b;
cin >> a;
cin >> b;
cout << a+b << endl;
return 0;
}