fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes her
  6. string s;
  7. cin.ignore();
  8. while(getline(cin,s)) {
  9. if(s != "") {
  10. cout << s << endl;
  11. }
  12.  
  13. }
  14. return 0;
  15. }
Success #stdin #stdout 0.01s 5512KB
stdin
sdf
sdf
sdf

sdfsdf

sdfdsf
stdout
df
sdf
sdf
sdfsdf
sdfdsf