def max(a,b):
if a>b:
max=a
else:
max=b
x=int(input("请输入整数:"))
y=int(input("请输入整数:"))
z=max(x,y)
print(z)