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