fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. string s;
  6. while(getline(cin,s,'o'))
  7. {
  8. cout << s << endl;
  9. }
  10. }
Success #stdin #stdout 0.01s 5532KB
stdin
Hello, world!
stdout
Hell
, w
rld!