Write a Python program to enter length and breadth of a rectangle and find its area.

#Static 

 length = 5
 
breadth = 2
 
area = length * breadth
 
print(“The area of Rectangle is :- “,area)
 

#Dynamic

length = int(input(“Enter the length of a rectangle :-“))
 
breadth = int(input(“Enter the breadth of a rectangle :-“))
 
area = length * breadth
 
print(“The area of Rectangle is :- “,area)