For problem statement at 0-999/200-299/290-299/290/problemE.txt this is a correct solution, but verifier at 0-999/200-299/290-299/290/verifierE.go ends with Accepted can you fix the verifier? ```go
package main
import (
"fmt"
"io"
"os"
"strings"
)
func main() {
input, _ := io.ReadAll(os.Stdin)
s := string(input)
if strings.Contains(s, "H") || strings.Contains(s, "Q") || strings.Contains(s, "9") {
fmt.Println("Yes")
} else {
fmt.Println("No")
}
}
```