#include using namespace std; typedef long long ll; // typedef unsigned long long ull; // const ll INF = numeric_limits::max() / 4; // const int INF = numeric_limits::max() / 4; // cout << std::fixed << std::setprecision(15); int main() { int T; cin >> T; for(int t = 0; t < T; t++){ ll N; cin >> N; if(N == 0){ cout << 2 << endl; continue; } if(N <= 10){ double e = 1; double d = 1; for(ll i = 1; i <= N; i++){ d *= (double)i; e += 1.0 / d; } e *= d; cout << (int)e % 10 << endl; continue; } cout << 1 << endl; } return 0; }