fork download
  1. #include <iostream>
  2. #include <fstream>
  3. #include <string>
  4.  
  5. int main() {
  6. std::string string;
  7. while (std::getline(std::cin, string)) {
  8. std::cout << string;
  9. }
  10. }
  11.  
Success #stdin #stdout 0s 3416KB
stdin
welcome to stack overflow
another sentence
end of the file
stdout
welcome to stack overflowanother sentenceend of the file