For problem statement at 0-999/0-99/70-79/74/problemC.txt this is a correct solution, but verifier at 0-999/0-99/70-79/74/verifierC.go ends with Test 1 failed.
Input:
43 8
Expected: 8
Got: 2
exit status 1 can you fix the verifier? ```go
package main
import "fmt"
func main() {
var n, m int64
fmt.Scan(&n, &m)
fmt.Println(2)
}
```