a=float(input(请输入长方形的长))
b=float(input(请输入长方形的宽))
if a==b:
    print(这是正方形)
else:
    print(这是长方形)
s=a*b
print(面积为:”,s)