#include using namespace std; typedef long long ll; #define vi vector #define vb vector #define pub push_back #define emb emplace_back #define rep(i,a,b) for(long long i = a; i < b; i++) #define rrep(i,a,b) for(long long i = a; i >= b; i--) #define iterm(key,val,ok) for(auto const& [key, val]:ok) #define all(x) x.begin(),x.end() #define py cout<<"YES"<; template istream& operator>>(istream& is, vector& v) { for (auto& i : v) is >> i; return is; } template ostream& operator<<(ostream& os, const vector& v) { for (auto& i : v) os << i << " "; return os; } template istream& operator>>(istream& is, pair& v) { is >> v.first >> v.second; return is; } template ostream& operator<<(ostream& os, const pair& v) { os << v.first << " " << v.second; return os; } /* problems with mod or small constraints are DP (2d,3d) or combo ascii: 1=49 a=97 A=65 check edge cases and constraints CHECK FOR JUST ONE ELEMENT OR SAME NUMBERS ETC always think about reversing a process see if theres any dumb tricks if youre not getting it: like only having to check small values or sth (a-b)modm = (a%m+(m-b%m))%m mark visited after adding to queue think about transforming representations of graphs, if some graph is too big to be represented, think about bipartite representation, if its too small maybe you can expand according to problem to make it easier you can also bfs on pairs of nodes, different representations of nodes etc etc lower bound can give beyond end also (check segfaults etc if using) many smol vectors are slowwww, use std:array instead to search for and remove particular things fastly just use multiset, like u can use prefix multiset and find closest value of something also like so many applications in just logn time */ void solve(){ ll n;cin>>n; vector arr; rep(i,1,10){ rep(j,i+1,10){ arr.pub(10*i+j); } } ll d=(n/36); ll f=(n%36); if(f==0){ f=36; d--; } string s=to_string(arr[f-1]); rep(i,0,d){ s=s+s[s.size()-1]; } cout<>t; while(t--){ solve(); } }