#include main(void){ int a,b; scanf("%i %i",&a,&b); if (a%b==0) {printf("%i",b/a);} else if (b%a==0) {printf("%i",a/b);} else {printf("NO");} }