For problem statement at 2000-2999/2100-2199/2170-2179/2172/problemA.txt this is a correct solution, but verifier at 2000-2999/2100-2199/2170-2179/2172/verifierA.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 g, c, ell int
fmt.Fscan(in, &g, &c, &ell)
minv, maxv := g, g
if c < minv {
minv = c
}
if ell < minv {
minv = ell
}
if c > maxv {
maxv = c
}
if ell > maxv {
maxv = ell
}
if maxv-minv >= 10 {
fmt.Print("check again")
} else {
median := g + c + ell - minv - maxv
fmt.Printf("final %d", median)
}
}