Untitled
unknown
plain_text
5 months ago
148 B
4
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"; } }