#include #include using namespace std; int main() { int count; string s; count = 0; while (cin >> s) count++; cout << count << '\n'; return 0; }