Write a program that inputs two integers. It determines and prints if the first integer is a multiple of second integer.

Write a program that inputs two integers. It determines and prints if the first integer is a multiple of second integer.



#include<iostream>
using namespace std;
int main ()
{
int a,b;
cout<<"\t Multiple Calculator "<<endl;
cout<<"\n";
cout<<"Enter the First Number"<<endl;
cin>>a;
cout<<"Enter the Second Number"<<endl;
cin>>b;
if (a%b==0)
{
cout<<"First number is Multiple of Second Number"<<endl;
}
else
{
cout<<"First number is Not Multiple of Second Number"<<endl;
}
}

Write a program that inputs two integers. It determines and prints if the first integer is a multiple of second integer.