let inpt = readLine()!.split(separator: " ").map{Int($0)!} if(inpt[1] % inpt[0] != 0) { print("NO") } else { print(inpt[1]/inpt[0]) }