#include <iostream>
using namespace std;

inline int func(int a, int b) {
	int ab[2] = {a, b};
	return ab[unsigned(a - b) >> 31];
}


int main() {
	
	cout << func(11, 27);
	
	// your code goes here
	return 0;
}