write the program to accept the length and area of a rectangle and calculate the breadth of the rectangle
Answers
Answered by
1
Answer:
L = int( input ( “Enter the length ”))
A = int( input ( “Enter the area ”))
B = A / L
print ( B )
Similar questions