// editor1
#include<iostream>
using namespace std;
int main(){
    int a,b;
    cout<<"Enter the first divident : "<<endl;
    cin>>a;
    cout<<"Enter the first divisor : "<<endl;
    cin>>b;
    if(b==0){
        couit<<"Invalid Input";
    }
    else{
        if(a%b==0)
          cout<<"True";
        else 
          cout<<"false";
    }
    return 0;
}