package main import . "fmt" import . "strings" func main() { var n int Scan(&n) for ;n>0;n-- { var d int Scan(&d) Println("9"+Repeat("0",d-1)) } }