write a program that:
w=float(input('Please input the width of rectangle: ')) h=float(input('Please input the height of rectangle: ')) area=w*h print('Area is: ', area)