Quote Originally Posted by C0FFINCASE View Post
#include <iostream>
#include <string>
#include <sstream>

using namespace std;

int main() {

string input = "";

cout << "Please enter your name:\n";
getline(cin, input);
cout << "Hello, " << input << endl << endl;

return 0;
}
Once again, sir, ur cool.