Untitled
unknown
plain_text
a year ago
148 B
7
Indexable
#include <bits/stdc++.h>
using namespace std;
int main() {
int n, x; cin>>n>>x;
if(n % x == 0){
cout<<"YES";
}else{
cout<<"NO";
}
}
Editor is loading...
Leave a Comment
#include <bits/stdc++.h>
using namespace std;
int main() {
int n, x; cin>>n>>x;
if(n % x == 0){
cout<<"YES";
}else{
cout<<"NO";
}
}