For problem statement at 1000-1999/1300-1399/1370-1379/1372/problemA.txt this is a correct solution, but verifier at 1000-1999/1300-1399/1370-1379/1372/verifierA.go ends with All 100 tests passed can you fix the verifier? ```go
package main
import (
"bufio"
"fmt"
"os"
)
func main() {
in := bufio.NewReader(os.Stdin)
out := bufio.NewWriter(os.Stdout)
defer out.Flush()
var t int
fmt.Fscan(in, &t)
for i := 0; i < t; i++ {
var n int
fmt.Fscan(in, &n)
for j := 0; j < n; j++ {
if j > 0 {
fmt.Fprint(out, " ")
}
fmt.Fprint(out, 1)
}
fmt.Fprintln(out)
}
}
```