Untitled

 avatar
unknown
plain_text
9 months ago
200 B
5
Indexable
#include <bits/stdc++.h>

using namespace std;

int main(){
    int n, x;
    cin>>n>>x;
    if(x%n){
        cout<<"NO";
    }
    else{
        cout<<"YES";
    }
    return 0;
}


Editor is loading...
Leave a Comment