c = float(input("请输入矩形的长\n")) k = float(input("请输入矩形的宽\n")) s = k*c a = round(s,2) print("矩形面积为:" + str(a))