Untitled
unknown
plain_text
5 months ago
219 B
2
Indexable
// Online C++ compiler to run C++ program online #include <iostream> using namespace std; int main() { int n, x; cin>>n>>x; if(n % x == 0){ cout<<"YES"; } else{ cout<<"NO"; return 0; }
Editor is loading...
Leave a Comment