fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main() {
  6.  
  7. string received;
  8. while(getline(cin, received, ','))
  9. {
  10. cout << received << endl;
  11. }
  12. // your code goes here
  13. return 0;
  14. }
Success #stdin #stdout 0s 3416KB
stdin
This, is {sparta, athene}.
stdout
This
 is {sparta
 athene}.