Code:
#include <iostream>
#include <string>
using namespace std;
string name;
int main()

{ 
    cout << "Hello, Please enter your name\n";
    cin >> name;
    cout << "Hello ";
    cout << name; 
    
    system ("PAUSE");
}
So the problem is After "Hello (name)" i cannot make the "Press any key to continue" or whatever, move down a line?