Skip to content

Instantly share code, notes, and snippets.

@TheoKlein
Last active June 6, 2016 16:16
Show Gist options
  • Select an option

  • Save TheoKlein/f1cc55e5d817d1464d27 to your computer and use it in GitHub Desktop.

Select an option

Save TheoKlein/f1cc55e5d817d1464d27 to your computer and use it in GitHub Desktop.
ZeroJudge_a001_C++
#include <iostream>
#include <string>
using namespace std;
int main (){
string input;
while(cin >> input)
cout << "hello, " << input << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment