fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int words = 0;
  6. char currentWord[100];
  7. while (cin >> currentWord) {
  8. ++words;
  9. }
  10. cout << words;
  11. return 0;
  12. }
Success #stdin #stdout 0s 5272KB
stdin
Autorul consideră că frumusețea poate exista în orice lucru, fie el obiect, sau om. Cu alte cuvinte, se poate găsi în absolut orice lucru dacă privim dintr-o altă perspectivă. Astfel, autorul este înconjurat de frumusețe fiind că acesta nu este limitată.
stdout
41