编辑代码

# coding:utf-8
a=input("a=")
b=input("b=")
a=float(a)
b=float(b)
if a>b:
    c=a
else:
    c=b
print(c)