For problem statement at 1000-1999/1500-1599/1520-1529/1525/problemA.txt this is a correct solution, but verifier at 1000-1999/1500-1599/1520-1529/1525/verifierA.go ends with All 100 tests passed can you fix the verifier? ```go
package main
import (
"bufio"
"fmt"
"os"
)
func gcd(a, b int) int {
for b != 0 {
a, b = b, a%b
}
return a
}
func main() {
in := bufio.NewReader(os.Stdin)
out := bufio.NewWriter(os.Stdout)
defer out.Flush()
var t int
fmt.Fscan(in, &t)
for ; t > 0; t-- {
var k int
fmt.Fscan(in, &k)
g := gcd(k, 100)
fmt.Fprintln(out, 100/g)
}
}
```