#include <stdio.h>

int max (int a, int b)
{
	if(a<b)
		return b;
	if (a>b && b<a)
		return a;
	else
		return 5;
}


int main(void) {
	// your code goes here
	printf("%d", max(10,10));
	return 0;
}


