// yukicoder My practice // author: Leonardone @ NEETSDKASU package main import "fmt" func main() { var a, b int fmt.Scan(&a, &b) if x := b / a; x * a == b { fmt.Println(x) } else { fmt.Println("NO") } }