编辑代码

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