编辑代码
Python代码
3.11.0
2.7.17
运行
# 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)