4 lines
No EOL
189 B
Python
4 lines
No EOL
189 B
Python
width = int(input('Input the width of your rectangle.'))
|
|
height = int(input('Input the height of your rectangle.'))
|
|
area = str(width * height)
|
|
print('The area of that rectangle is ' + area) |