Advertisement
Guest User

File

a guest
Feb 25th, 2020
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3. #include <string>
  4.  
  5. using namespace std;
  6.  
  7. string s, b;
  8. int k;
  9.  
  10. int main() {
  11. ifstream cin ("input.txt");
  12. ofstream cout ("output.txt");
  13.  
  14. k=10;
  15. while (!cin.eof()) {
  16. cin >> s;
  17. cout << s;
  18. }
  19.  
  20. cin.close();
  21. cout.close();
  22. return 0;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement