fork download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5. string s;
  6. getline(cin,s);
  7. s = ' '+s;
  8. for(int i=1; i<(int)(s.size()); i+=1)
  9. {
  10. if(s[i]==' ' && s[i-1] != ' ') cout<<"\n";
  11. else cout<<s[i];
  12. }
  13. }
Success #stdin #stdout 0s 5304KB
stdin
Hus High School for Gifted Students.
stdout
Hus
High
School
for
Gifted
Students.