SQRW @ 2023-12-30 15:20:15
#include<bits/stdc++.h>
using namespace std;
int n,s1,s2,d=1,l;
char c[205][205];
int main(){
cin>>c[1];
n=strlen(c[1]);
cout<<n<<' ';
for(int i=1;i<=n;i++){
if(i!=1)cin>>c[i];
}
while(d<=n){
while(c[d][l]=='0'){
s1++;
l++;
if(c[d][l]==0){
l=0;
d++;}
}
cout<<s1<<' ';
s1=0;
while(c[d][l]=='1'){
s2++;
l++;
if(c[d][l]==0){
l=0;
d++;}
}
cout<<s2<<' ';
s2=0;
}
return 0;
}