Skip to content

Instantly share code, notes, and snippets.

@sinmaplewing
Created January 17, 2011 16:41
Show Gist options
  • Save sinmaplewing/783070 to your computer and use it in GitHub Desktop.
Save sinmaplewing/783070 to your computer and use it in GitHub Desktop.
#include<iostream>
using namespace std;
int main()
{
string s;
while( cin >> s )
cout << "hello, " << s << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment