C my code for start #include #include using namespace std; int main() { string name; cout << "Please enter your name: "; cin >> name; cout << "Hello " << name << '\n'; return 0; }