For problem statement at 0-999/700-799/700-709/707/problemA.txt this is a correct solution, but verifier at 0-999/700-799/700-709/707/verifierA.go ends with All tests passed can you fix the verifier? package main
import "fmt"
func main() {
var n, m int
fmt.Scan(&n, &m)
color := false
for i := 0; i < n; i++ {
for j := 0; j < m; j++ {
var s string
fmt.Scan(&s)
if s == "C" || s == "M" || s == "Y" {
color = true
}
}
}
if color {
fmt.Println("#Color")
} else {
fmt.Println("#Black&White")
}
}