fork download
  1. #include <algorithm>
  2. #include <iostream>
  3. #include <iterator>
  4. #include <string>
  5.  
  6. using namespace std;
  7.  
  8. int main() {
  9. vector<string> words;
  10. copy(istream_iterator<string>{cin}, istream_iterator<string>{}, back_inserter(words));
  11. copy(begin(words), end(words), ostream_iterator<string>{cout, ", "});
  12. cout << endl;
  13. }
  14.  
Success #stdin #stdout 0s 3480KB
stdin
these are some words
and some more words
apple orange pear
string
this is a sentence
stdout
these, are, some, words, and, some, more, words, apple, orange, pear, string, this, is, a, sentence,