#include <iostream> #include <string> using namespace std; int main() { string yourName; cout << "Type your name: "; cin >> yourName; cout << "Hello " + yourName << endl; return 0; }
#include <iostream> #include <string> using namespace std; int main() { string yourName; cout << "Type your name: "; cin >> yourName; cout << "Hello " + yourName << endl; return 0; }