#include <stdio.h>


int ab(int n, int m){
	return fmin(n,m);
}	
	
	

int main(void) {
	int n=-6, m=-27;
	printf("%d",ab(n, m));
	return 0;
}
