For problem statement at 1000-1999/1400-1499/1450-1459/1455/problemA.txt this is a correct solution, but verifier at 1000-1999/1400-1499/1450-1459/1455/verifierA.go ends with All tests passed can you fix the verifier? ```go
package main
import "fmt"
func main() {
var t int
fmt.Scan(&t)
for i := 0; i < t; i++ {
var s string
fmt.Scan(&s)
fmt.Println(len(s))
}
}
```