the-honk/gcse computer science/year 9/python challenges/3 - Area.py

4 lines
189 B
Python
Raw Normal View History

2021-05-28 20:38:55 +00:00
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)