a=int(input("输入第一个数:"))
b=int(input("输入第二个数:"))
c=int(input("输入第三个数:"))

if a>b:
m=a
else:
m=b
if m>c:
print("最大数是:",m)
else:
print("最大数是:",c)