length = float(input("输入矩形的长:"))wide = float(input("输入矩形的宽:"))area = length * widematch = areaprint("矩形面积:")print("%.2f" % match)