#include <iostream.h>
#include <conio.h>


main()
{
    int a,b;
    cout << "Enter 2 numbers:\n";
    cin>>a>>b;
    if(a%b==0)
            cout<<"b is divisor of a.";
    else
            cout<<"b is NOt divisor of a.";
    getch();
}