a , b = map(int,input().split());
if a > b:
    print(a)
else:
    print(b)
/**************************************************************
	Problem: 1034
	User: admin
	Language: Python
	Result: Accepted
	Time:92 ms
	Memory:34244 kb
****************************************************************/