For problem statement at 2000-2999/2100-2199/2110-2119/2112/problemA.txt this is a correct solution, but verifier at 2000-2999/2100-2199/2110-2119/2112/verifierA.go ends with Accepted (400 tests). can you fix the verifier? ```go
package main
import "fmt"
func main() {
var t int
fmt.Scan(&t)
for i := 0; i < t; i++ {
var a, x, y int
fmt.Scan(&a, &x, &y)
if (x-a)*(y-a) > 0 {
fmt.Println("YES")
} else {
fmt.Println("NO")
}
}
}
```