!-- flowchart 箭头图标 勿删 --
#include<iostream>
#include<string>
using namespace std;
int main()
{
string user_name;
cout<<"please enter your first name:";
cin>>user_name
cout<<'\n';
<<"hello,"
<<user_name;
<<"...and goodbye!\n";
return 0;
#include<i