#include using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(nullptr); int T; cin >> T; while(T--){ int N; cin >> N; while(N){ for(int i=1; i<=10; i++) if(N){ cout << i%10; N--; } } cout << "\n"; } }