Copy the code below and paste it into the main.cpp file in the Editor View:
#include <iostream>
#include <string>
using namespace std;

int main()
{
	string yourName;

	cout << "Enter your name: ";
	cin  >> yourName;
	cout << "Hello " + yourName << endl;

	return 0;
}