题目描述
输入
输出
样例输入 Copy
样例输出 Copy
#include<bits/stdc++.h>
using namespace std;
int jud(int a,int b,int c);
int main()
{
int a,b,c;
cin>>a>>b>>c;
jud(a,b,c);
return 0;
}
int jud(int a,int b,int c)
{
if(a%(b*c)==0)
cout<<"Yes";
else
cout<<"No";
return 0;
}