For problem statement at 0-999/0-99/30-39/39/problemD.txt this is a correct solution, but verifier at 0-999/0-99/30-39/39/verifierD.go ends with case 1 failed
input:
1 1 0 1 1 0
expected:YES
q
got:NO
q
exit status 1 can you fix the verifier? ```go
package main
import "fmt"
func main() {
var x1, y1, z1, x2, y2, z2 int
fmt.Scan(&x1, &y1, &z1)
fmt.Scan(&x2, &y2, &z2)
if (x1 == x2 || y1 == y2 || z1 == z2) && !(x1 == x2 && y1 == y2 && z1 == z2) {
fmt.Println("YES")
} else {
fmt.Println("NO")
}
}
```