12349
2021-04-01 17:02:09
0
#include <iostream>
#include <string>
using namespace std;
int main(int argc, char* argv[]) {
int valInteger = 10;
string valString("value");
cout << "Hello, world!" << endl;
cout << "Integer value: " << valInteger << endl;
cout << "String value: " << valString << endl;
}