Guest User

Untitled

a guest
Jul 10th, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5. int t;
  6. cin>>t;
  7. while(t--){
  8. string s;
  9. getline(cin,s);
  10. cout<<s<<endl;
  11. }
  12. return 0;
  13. }
Add Comment
Please, Sign In to add comment