Calculate the area of a rectangle with given length and width.

length = 5
width = 3
area = length * width
print("Area of the rectangle:", area)
Output:

Area of the rectangle: 15

Leave a Reply

Your email address will not be published. Required fields are marked *