the-honk/school/gcse/year 9/python challenges/3 - Area.py
2021-12-21 19:46:28 +00:00

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)