#include <iostream>
using namespace std;
int main() {
int a = 19;
int b = 114;
int sum = a + b;
cout << sum;
return 0;
}
Declare the variables a, b, and sum as integers.
The sum of a and b is 'sum.'
Display the sum.
Return an integer value.
6.6m questions
8.8m answers