1234567891011121314151617
#include <iostream> using namespace std; int main(); { string user_name; cout << "Hello, my name is Hal!\nWhat is your name?\n"; getline(cin, user_name); cout << "Hello " << user_name << ". Nice to meet you! :)"; return 0; }
int main()