以下のコードをコピーして、「エディター」ビューの main.cpp ファイルに貼り付けます。
#include <iostream>
#include <string>
  using namespace std;
int main()
{
	string yourName;

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

	return 0;
}