fork download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4. string s;
  5.  
  6. int main()
  7. {
  8. ios_base::sync_with_stdio(0);
  9. cin.tie(0); cout.tie(0);
  10. while(cin >> s)
  11. {
  12. cout << s << ' ';
  13. }
  14. }
  15.  
Success #stdin #stdout 0.01s 5304KB
stdin
Facebook      google    YOUTUBE    amazon 
stdout
Facebook google YOUTUBE amazon