#include<stdio.h>
int main()
{
	int a;
	int b;
	int max;
	scanf("a=%d\n,b=%d\n",&a,&b);
	max=(a>b)? a:b;
	printf("max=%d\n",max);
	return 0;


}