fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. string s, x;
  5.  
  6. int main()
  7. {
  8. while (cin >> x)
  9. {
  10. s = s + x + " ";
  11. }
  12. int n = s.size();
  13. s.erase(n-1, 1);
  14. s[0] -= 32;
  15. cout << s;
  16. }
  17.  
Success #stdin #stdout 0s 5316KB
stdin
     this is    an     example     
  
stdout
This is an example