Загрузка данных


#include <iostream>
using namespace std;
int main()
{
    string name;
    cout << "What is Your name?";
    cin >> name;
    cout << "Hello, " << name << " !" << endl;
}