#include <stdio.h>
int Max(int x,int y)
{
 if(x>y)
   return x;
 else
   return y;
}
int main(void) {
	// your code goes here
    int a,b,max;
    scanf("%d%d",&a,&b);
    max=Max(a,b);
    printf("max=%d",max);
	return 0;
}
