#include #define FOR(i,a,b) for (int i=(a);i<(b);i++) #define FORR(i,a,b) for (int i=(a);i>=(b);i--) #define pb push_back using namespace std; typedef long long ll; typedef pair pii; typedef vector vi; typedef set si; const int inf = 1e9; const int mod = 1e9+7; main(){ cin.tie(0); ios::sync_with_stdio(false); int a, b; cin >> a >> b; if(b%a == 0){ cout << b / a << endl; }else{ cout << "NO" << endl; } }