Write a C++ that inputs two numbers. It should print whether the two numbers are multiples or not.
#include<iostream>
using namespace std;
int main(){
int a,b;
cout<<"Enter two numbers "<<endl;
cout<<"a : ";
cin>>a;
cout<<"b : ";
cin>>b;
if(a%b==0 || b%a==0){
cout<<"Multiple";
}
else{
cout<<"Not Multiple";
}
}

