import sys input = sys.stdin.readline N=int(input()) for i in range(N): d=int(input()) if d==1: print(10) else: print(9*pow(10,d-1))