For problem statement at 2000-2999/2000-2099/2030-2039/2035/problemB.txt this is a correct solution, but verifier at 2000-2999/2000-2099/2030-2039/2035/verifierB.go ends with reference runtime error: exec: "ref2035B.bin": executable file not found in $PATH can you fix the verifier? ```go
package main
import (
"bufio"
"fmt"
"os"
"strings"
)
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)
if n == 1 || n == 3 {
fmt.Fprintln(out, "-1")
} else if n%2 == 0 {
fmt.Fprint(out, strings.Repeat("3", n-2))
fmt.Fprintln(out, "66")
} else {
fmt.Fprint(out, strings.Repeat("3", n-5))
fmt.Fprintln(out, "36366")
}
}
}
```