#include <stdio.h>int main(){ int a, b; while (scanf("%d %d", &a,&b) == 2){ if (a %b) printf("不能整除\n");elseprintf("能整除\n"); } return 0;}