Maplewing

6/18 C++: EOF

Jun 17th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.     string s;
  6.     while( cin >> s ){
  7.         cout << "hello,"<< s << endl;
  8.     }
  9.     return 0;
  10. }
Add Comment
Please, Sign In to add comment