#include <iostream>
usingnamespace std;
void FindMultiple(int &, int &);
int main()
{
int a=2, b=68;
cout << "Enter the that divisor, then the number to be divided: ";
cin >> a >> b;
if (FindMultiple(a, b) == 0);
{
cout << a << " is a mulitple of " << b << "!"
}
else
{
cout << a << " and " << b << " are not multiples of each other.";
}
system("pause");
return 0;
}
void FindMultiple(int &n1, int &n2)
{
n2%n1;
return;
}