#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define ld long double
#define all(n) n.begin(),n.end()
#define sz(n) (ll) n.size()
#define endl '\n'
const ll mod = 1e9 + 7;
void test_case() {
string s;
cin >> s;
ll ans = 0;
for (ll i=0; i<sz(s); i++){
if (s[i] >= '0' and s[i] <= '9') {
ans += s[i] - '0';
}
}
cout << ans << endl;
}
int32_t main() {
//freopen("input.txt","r", stdin);
//freopen("output.txt","w", stdout);
//cout << fixed << setprecision(6);
//priority_queue<ll,vector<ll>,greater<ll>> minH;
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
ll t = 1;
cin >> t;
while(t--) {
test_case();
}
}