← Home
For problem statement at 0-999/900-999/930-939/935/problemA.txt this is a correct solution, but verifier at 0-999/900-999/930-939/935/verifierA.go ends with All tests passed can you fix the verifier? ```go
package main

import (
	"bufio"
	"fmt"
	"os"
)

func main() {
	in := bufio.NewReader(os.Stdin)
	var n int
	fmt.Fscan(in, &n)

	ans := 0
	for l := 1; l < n; l++ {
		if (n-l)%l == 0 {
			ans++
		}
	}
	fmt.Println(ans)
}
```