Guest User

Untitled

a guest
Jun 25th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. //use ./a.out < input.txt
  6.  
  7. int main() {
  8.     string my_word;
  9.     do{
  10.         cin >> my_word;
  11.         cout << my_word << endl;
  12.     }while(cin);
  13. }
Add Comment
Please, Sign In to add comment