/***************************************************************************** * Determines if two integers are divisors of each other. * * Inputed: a,b (two integers). * * Outputed: (A statement concluding who is a divisor). * * Written: October 17, 2001 * * By: Ronald Roberts * *****************************************************************************/ //Program 22 //17OCT01 #include #include #include int main() { int a=0, b=0, c=0, d=0; int e=0; cout<<"Please Enter 2 integers (smaller first)"<>a>>b; c=b/a; d=a/b; if (c*a==b || b*d==a) { if (a