/*Write aprogram that reads in two integers and determines and prints if the
 first is the multiple of the second.*/
#include<iostream.h>
#include<conio.h>
void main()
{

clrscr();
 int a,b;
     cout<<"Enter The Value Of a:";
     cin>>a;
     cout<<"Enter The Value Of b:";
     cin>>b;
  if(a%b==0)
     cout<<"Multiple.";
  else
     cout<<"Not Multiple.";
getch();

}