mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-10 16:20:27 +08:00
12 lines
167 B
C++
12 lines
167 B
C++
#include <iostream>
|
|
using namespace std;
|
|
int i, l;
|
|
string s;
|
|
int main(){
|
|
getline(cin, s);
|
|
for(i = 0; i < s.size(); i ++ ){
|
|
if(s[i] != ' ') l ++ ;
|
|
}
|
|
cout << l;
|
|
}
|