#include void solve() { int a, b; std::cin >> a >> b; if (b % a != 0) { std::cout << "NO" << std::endl; } else { std::cout << b / a << std::endl; } } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }