the-honk/gcse computer science/year 9/python/python challenges/3 - Area.py
2021-05-28 21:38:55 +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)