Run ID:125130
提交时间:2025-07-13 15:27:44
#include<iostream> #include<cstring> using namespace std; int main(){ string s; getline(cin,s); int len=s.size(); int k=0,a=0; for(int i=0;i<len;i++){ if(s[i]!=' '){ k++; }else{ if(k!=0){ if(a==0){ cout<<k; a=1; } else{ cout<<","<<k; } k=0; } } if(i==len-1){ cout<<","<<k; } } return 0; }