# MCS 260 Fall 2021 Lecture 3
# Compute area and perimeter of a rectangle

width = float(input("Enter width: "))
height = float(input("Enter height: "))

print("Area of rectangle is",width*height)
print("Perimeter of the rectangle is",2*(width+height))
