Untitled

Anonymous
plain_text
10/14/2024 4:47 PM
200 B
15
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