For problem statement at 0-999/400-499/470-479/470/problemG.txt this is a correct solution, but verifier at 0-999/400-499/470-479/470/verifierG.go ends with All tests passed can you fix the verifier? package main
import (
"bufio"
"fmt"
"os"
)
func main() {
in := bufio.NewReader(os.Stdin)
var a, b string
fmt.Fscan(in, &a, &b)
d := 0
for i := 0; i < len(a); i++ {
if a[i] != b[i] {
d++
}
}
fmt.Println(d)
}