#include using namespace std; string num = "0123456789"; void solve() { int n; cin >> n; string s = ""; for (int i=0; i> T; while (T--) solve(); return 0; }