#include #include #include #include using namespace std; const int MAXN=110; char str[MAXN]; char sta1[MAXN],sta2[MAXN]; int main() { int T; scanf("%d",&T); while(T--) { scanf("%s",&str); int n=strlen(str); int t1=0,t2=0; int t=n-1; while(t>0 && str[t]=='0')t--; for(int i=t;i>=0;i--) if(str[i]!='0'&&str[i]t;i--)sta2[t2++]=str[i]; while(t1+t20) { int tmp=t-1; for(int j=tmp-1;j>=0;j--) if(str[j]tmp;i--)sta2[t2++]=str[i]; t=tmp; } for(int i=0;i=0;i--)printf("%c",sta2[i]); printf("\n"); } }