#include int main(){ int x,y; scanf("%d %d",&x,&y); if(y%x){ puts("NO"); }else{ printf("%d\n",y/x); } return 0; }