the-honk/gcse computer science/year 9/python challenges/3 - Area.py
2021-09-14 21:57:23 +01: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)