// Testing for divisibility
#include <iostream>
using namespace std;

int main()
{
  int number, d;

  cout << "Enter two integers: ";
  cin >> number >> d;

  if ( number%d == 0 )
    cout << number << " is divisible by " << d << endl;
  else
    cout << number << " is NOT divisible by " << d << endl;

  return 0;
}
