For problem statement at 1000-1999/1100-1199/1150-1159/1157/problemA.txt this is a correct solution, but verifier at 1000-1999/1100-1199/1150-1159/1157/verifierA.go ends with OK can you fix the verifier? ```go
package main
import (
"fmt"
)
func f(x int) int {
x += 1
for x%10 == 0 {
x /= 10
}
return x
}
func main() {
var n int
fmt.Scan(&n)
visited := make(map[int]bool)
visited[n] = true
for {
n = f(n)
if visited[n] {
break
}
visited[n] = true
}
fmt.Println(len(visited))
}
```