Untitled
unknown
plain_text
a year ago
219 B
4
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