fork download
  1. #include <iostream>
  2. #include <string>
  3. #include <sstream>
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9. string FullName;
  10. getline(cin, FullName);
  11. string namepart;
  12. istringstream strm(FullName);
  13. while ( strm >> namepart )
  14. cout << namepart << '\n';
  15. }
Success #stdin #stdout 0s 15240KB
stdin
Max Michael Max
stdout
Max
Michael
Max