#include int Max(int X, int Y); // Returns the larger of X and Y. int main() { int A, B; cout << ÒPlease enter two integers: Ò; cin >> A >> B; int LargerAB = Max(A, B); cout << "The larger of " << A << " and " << B << " is " << LargerAB << ".\n"; } // end main int Max(int X, int Y) { return (X > Y) ? X : Y; } // end Max