fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5. string s;
  6. int cnt=0;
  7. while(cin>>s){
  8. cnt++;
  9. }
  10. cout<<cnt;
  11. }
Success #stdin #stdout 0.01s 5324KB
stdin
Standard input is empty
stdout
Standard output is empty