fork download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. for(string text;getline(cin, text);) {
  9.  
  10. if (!text.empty()) {
  11. cout << text << endl;
  12. } else {
  13. break;
  14.  
  15. }
  16. }
  17. }
  18.  
Success #stdin #stdout 0s 2964KB
stdin
a
b
c

d
e
f

g
stdout
a
b
c