#include int main(){ int a,b; std::cin >> a >> b; if(b%a==0)printf("%d",b/a); else printf("NO"); return 0; }