ACM2075_A/B】的更多相关文章

#include<iostream> int main() { using namespace std; int i,j,count; cin>>count; while(count--) { cin>>i>>j; if(!(i%j)) cout<<"YES"<<endl; else cout<<"NO"<<endl; } ; }…