include // Library for input and output
using namespace std;
int main() {
// This prints text to the screen
cout << “Hello! This is C++.” << endl;
int a = 5;
int b = 10;
int sum = a + b;
cout << "The sum of " << a << " and " << b << " is: " << sum << endl;
return 0; // Signals that the program finished successfully
}