#include using namespace std; #define repl(i,a,b) for(int i=(int)(a);i<(int)(b);i++) #define rep(i,n) repl(i,0,n) #define mp(a,b) make_pair((a),(b)) #define pb(a) push_back((a)) #define all(x) (x).begin(),(x).end() #define uniq(x) sort(all(x)),(x).erase(unique(all(x)),end(x)) #define fi first #define se second #define dbg(...) _dbg(#__VA_ARGS__, __VA_ARGS__) void _dbg(string){cout< void _dbg(string s,H h,T... t){int l=s.find(',');cout< ostream& operator<<(ostream& o, const pair &p){o<<"("< ostream& operator<<(ostream& o, const vector &v){o<<"[";for(T t:v){o<=0; i--){ if(isdigit(s[i])){ int carry = 1; while(i>=0 && isdigit(s[i])){ int d = s[i]-'0' + carry; if(d<=9){ ans.pb('0'+d); carry = 0; } else { ans.pb('0'); carry = 1; } i--; } if(carry) ans.pb('1'); break; } else ans.pb(s[i]); } for(; i>=0; i--){ ans.pb(s[i]); } reverse(all(ans)); cout << ans << endl; } int main(){ int t; cin>>t; scanf("\n"); rep(_,t){ solve(); } return 0; }