Run ID:125133

提交时间:2025-07-13 15:28:41

#include<iostream> #include<cstring> using namespace std; int main() { string s; getline(cin,s); int len=s.size(); int k=0; int a=0; for(int i=0;i<len;i++){ if(s[i]!=' '){ k++; } else if(s[i]==' '&&k!=0){ if(a==0){ cout<<k; a=1; } else{ cout<<","<<k; } k=0; } if(i==len-1&&k!=0){ cout<<","<<k; } } }