For problem statement at 0-999/600-699/630-639/630/problemL.txt this is a correct solution, but verifier at 0-999/600-699/630-639/630/verifierL.go ends with All tests passed can you fix the verifier? ```go
package main
import "fmt"
func main() {
var s string
fmt.Scan(&s)
if len(s) != 5 {
return
}
var val int64
for _, c := range []byte{s[0], s[2], s[4], s[3], s[1]} {
val = val*10 + int64(c-'0')
}
var ans int64 = 1
for i := 0; i < 5; i++ {
ans = (ans * val) % 100000
}
fmt.Printf("%05d\n", ans)
}
```