/***************************************************************************** * Determines whether two numbers are multiples of each other. * * Inputed: a, b (two integers) * * Outputed: (A statement whether multiples or not). * * Written: October 3, 2001 * * By: Ronald Roberts * *****************************************************************************/ //Program 15 //03OCT01 #include #include #include int main() { //declaration of variables int a=0, b=0, c=0,; char d='f'; //user instructions and user input cout<<"This program tests two numbers to determine if they are multiples."<>a>>b; //cal code if(a%b==0 || b%a==0) { cout<