English, asked by san12363, 3 months ago

write the program to accept the length and area of a rectangle and calculate the breadth of the rectangle​

Answers

Answered by reenakumarikumari504
1

Answer:

L = int( input ( “Enter the length ”))

A = int( input ( “Enter the area ”))

B = A / L

print ( B )

Similar questions