
Jorge S. answered 11/02/22
Tutor
4.9
(94)
Senior Computer Science Student and Varsity Tutor
using namespace std;
int main(){
int a = 50;
int b = 100;
int total = a + b;
cout << a << " + " << b << " = " << total << endl;
return 0;
}