#include
int main() { // Declare variables int a = 5; int b = 10; int sum;
// Calculate the sum of a and b
sum = a + b;
// Print results
std::cout << "Hello, World!" << std::endl;
std::cout << "The sum of " << a << " and " << b << " is " << sum << std::endl;
return 0;
}