#include using namespace std; inline int max( int x1, int x2 ) { return x1 > x2 : x1 ; x2 ; } int main() { cout << max( 3, 4 ) << endl ; }