← Home
For problem statement at 1000-1999/1900-1999/1940-1949/1945/problemB.txt this is a correct solution, but verifier at 1000-1999/1900-1999/1940-1949/1945/verifierB.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 a, b, m int64
        fmt.Scan(&a, &b, &m)
        fmt.Println(m/a + m/b + 2)
    }
}
```