#include <stdio.h>

int main(void) {
	int a,b;
	
	scanf("%d,%d",&a,&b);
	if(b>a){
		a=b;
	}
	printf("%dの方が大きい\n",a);
	
	return 0;
}
