a = float(input("请输入矩形的长: "))
b = float(input("请输入矩形的宽: "))
c = a*b
print("矩形的面积为: "+str('%.2f'%c))