
ANYONE CAN HELP ME PLEASE
[c]
#include<stdio.h>
int main(void)
{
long step, mod;
while(scanf("%ld %ld", &step, &mod)==2) {
if(step<1 || mod >100000) break;
printf("%10ld%10ld", step, mod);
if(step>=mod&&step%mod==0&&step>1&&mod>1) printf(" Bad Choice\n\n");
else if(step<mod&&mod%step==0&&step>1&&mod>1) printf(" Bad Choice\n\n");
else printf(" Good Choice\n\n");
}
return 0;
}
/* @end_of_source_code */[/c]