For problem statement at 1000-1999/1300-1399/1360-1369/1360/problemA.txt this is a correct solution, but verifier at 1000-1999/1300-1399/1360-1369/1360/verifierA.go ends with All tests passed! can you fix the verifier? package main
import (
"bufio"
"fmt"
"os"
)
func main() {
in := bufio.NewReaderSize(os.Stdin, 1<<20)
out := bufio.NewWriterSize(os.Stdout, 1<<20)
defer out.Flush()
var t int
fmt.Fscan(in, &t)
for i := 0; i < t; i++ {
var a, b int64
fmt.Fscan(in, &a, &b)
if a > b {
a, b = b, a
}
side := b
if 2*a > side {
side = 2 * a
}
fmt.Fprintln(out, side*side)
}
}