IDNLearn.com is committed to providing high-quality answers to your questions. Get accurate answers to your questions from our community of experts who are always ready to provide timely and relevant solutions.
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.