Following is a program to find out the Area of a rectangle :
x = int(input("Enter the length of the rectangle\n")) y = int(input("Enter the breadth of the rectangle\n")) area = x*y print(f"Area of the rectangle: {x}x{y} = {area}")
x – integer (length)
y- integer (breadth)
area = x * y