#include using namespace std; int min (int x, int y) { return (x < y? x : y); } // end function square int main() { cout << min( 3,4 ) <