#include <iostream> #include <string> using namespace std; int main() { string yourName; cout << "Escriba su nombre: "; cin >> yourName; cout << "Hola " + yourName << endl; return 0; }