fork download
  1. #include <iostream>
  2. #include <iomanip>
  3. #include <string>
  4. #include <set>
  5. #include <sstream>
  6.  
  7. using namespace std;
  8.  
  9. int main()
  10. {
  11. string in;
  12. getline(cin,in);
  13. set<string> st;
  14. istringstream is(in);
  15. while(is >> in) st.insert(in);
  16. for(auto s: st) cout << s << " ";
  17. }
  18.  
Success #stdin #stdout 0s 4312KB
stdin
хорошая погода правда да правда погода в самом деле хорошая
stdout
в да деле погода правда самом хорошая