IDNLearn.com connects you with experts who provide accurate and reliable answers. Get the information you need from our community of experts who provide accurate and thorough answers to all your questions.
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.