#include #include #include #include #include #include using namespace std; char g(string s){ int ans = 0; for(auto c : s ) ans += c - '0'; return ans % 10 + ans / 10 % 10 + '0'; } int f(string S){ if( S.size() == 1 ) return S[0] - '0'; string r; for(int i = 0 ; i + 1 < S.size() ; i++) r += g(S.substr(i,2)); return f(r); } int main(){ int N; cin >> N; while(N--){ string S; cin >> S; cout << f(S) << endl; } }