Skip to content

Instantly share code, notes, and snippets.

@ik11235
Created December 6, 2014 17:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ik11235/678d2e8e9882329a98a1 to your computer and use it in GitHub Desktop.
Save ik11235/678d2e8e9882329a98a1 to your computer and use it in GitHub Desktop.
#include<algorithm>
#include<iostream>
using namespace std;
int main()
{
int m,d;
cin>>m>>d;
if(m%d)
cout<<"NO"<<endl;
else
cout<<"YES"<<endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment