← Home
For problem statement at 0-999/900-999/980-989/987/problemB.txt this is a correct solution, but verifier at 0-999/900-999/980-989/987/verifierB.go ends with All 212 tests passed. can you fix the verifier? ```go
package main

import (
	"bufio"
	"fmt"
	"math"
	"os"
)

func main() {
	in := bufio.NewReader(os.Stdin)
	var x, y float64
	fmt.Fscan(in, &x, &y)

	if x == y {
		fmt.Print("=")
		return
	}

	a := y * math.Log(x)
	b := x * math.Log(y)
	eps := 1e-12

	if math.Abs(a-b) <= eps {
		fmt.Print("=")
	} else if a < b {
		fmt.Print("<")
	} else {
		fmt.Print(">")
	}
}
```