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

4 lines
189 B
Python
Raw Normal View History

2024-10-09 17:02:27 +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)