IDNLearn.com is the perfect place to get detailed and accurate answers to your questions. Ask anything and receive prompt, well-informed answers from our community of experienced experts.
Answer:
IN PYTHON ::
x=int(input('Enter length:'))
y=int(input('Enter width:'))
print('Area of the rectangle is', x*y,'squared units')
I hope it will be useful.