← Home
For problem statement at 1000-1999/1100-1199/1190-1199/1199/problemB.txt this is a correct solution, but verifier at 1000-1999/1100-1199/1190-1199/1199/verifierB.go ends with All 104 tests passed can you fix the verifier? ```go
package main

import (
	"fmt"
)

func main() {
	var h, l float64
	fmt.Scan(&h, &l)
	ans := (l*l - h*h) / (2 * h)
	fmt.Printf("%.10f", ans)
}
```