/*
2.	Write a C++ program to read two integers and to determine and 
print whether one of them is a multiple of the other or not.
*/

#include <iostream>
using namespace std;
int main()
{
	int number1, number2;
	cout << "Enter two integers: ";
	cin >> number1 >> number2;
	if (number1 % number2 == 0 || number2 % number1 == 0)
		cout << "One of the numbers is a multiple "
			<< "of the other.\n";
	else
		cout << "None of the numbers is a multiple "
			<< "of the other.\n";
	return 0;
}
