For problem statement at 1000-1999/1800-1899/1850-1859/1850/problemA.txt this is a correct solution, but verifier at 1000-1999/1800-1899/1850-1859/1850/verifierA.go ends with All 199 tests passed can you fix the verifier? package main
import "fmt"
func main() {
var t int
if _, err := fmt.Scan(&t); err != nil {
return
}
for i := 0; i < t; i++ {
var a, b, c int
fmt.Scan(&a, &b, &c)
if a+b >= 10 || a+c >= 10 || b+c >= 10 {
fmt.Println("YES")
} else {
fmt.Println("NO")
}
}
}