For problem statement at 1000-1999/1800-1899/1880-1889/1881/problemB.txt this is a correct solution, but verifier at 1000-1999/1800-1899/1880-1889/1881/verifierB.go ends with all tests passed can you fix the verifier? ```go
package main
import (
"bufio"
"fmt"
"os"
)
func gcd(a, b int64) int64 {
for b != 0 {
a, b = b, a%b
}
if a < 0 {
return -a
}
return a
}
func main() {
in := bufio.NewReader(os.Stdin)
out := bufio.NewWriter(os.Stdout)
defer out.Flush()
var t int
if _, err := fmt.Fscan(in, &t); err != nil {
return
}
for ; t > 0; t-- {
var a, b, c int64
fmt.Fscan(in, &a, &b, &c)
g := gcd(gcd(a, b), c)
sum := a/g + b/g + c/g
if sum <= 6 {
fmt.Fprintln(out, "YES")
} else {
fmt.Fprintln(out, "NO")
}
}
}
```