Guest User

Untitled

a guest
Sep 18th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. char c;
  7.  
  8. cin.get(c);
  9. while (!cin.eof()) {
  10. cout << c;
  11. cin.get(c);
  12. }
  13.  
  14. return 0;
  15. }
Add Comment
Please, Sign In to add comment