IDNLearn.com: Where your questions meet expert advice and community support. Join our Q&A platform to receive prompt and accurate responses from knowledgeable professionals in various fields.
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.