package main import ( "fmt" ) func main() { var A, B int fmt.Scan(&A, &B) if A != 1 { x := B / (1 - A) fmt.Println(x) } else { fmt.Println(0) } }