home *** CD-ROM | disk | FTP | other *** search
- #include <iostream>
- #include <string>
- #include <vector>
-
- using namespace std;
-
- int main()
- {
- string s;
- vector<string> v;
-
- while (getline( cin, s ) && s.length()) {
- v.push_back( s );
- }
-
- while (v.size()) {
- cout << v.back() << '\n';
- v.pop_back();
- }
-
- return 0;
- }
-
-
-