13 lines
157 B
C++
13 lines
157 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
cout << "HELLO, WORLD \n";
|
|
string x;
|
|
cin >> x;
|
|
cout << &x;
|
|
endl;
|
|
return 0;
|
|
}
|