#include <stdio.h>
#define min(x,y) ( (x) < (y) ? (x) : (y) )
int main(void) {
	int x= 23 + min(3,4);
	printf("%d\n", x);
	return 0;
}
