Calculate the area of a rectangle for a given breadth and length

Problem Statement: Given the length and breadth of a rectangle, calculate the area.

Algorithm:

  1. Start
  2. Input the length (L) of the rectangle.
  3. Input the breadth (B) of the rectangle.
  4. Calculate the area using the formula: Area=L×B\text{Area} = L \times B
  5. Display the calculated area.
  6. End

Explanation: The area of a rectangle is simply the product of its length and breadth. Once we get the input values, the multiplication gives us the area.