the-honk/coursework/gcse computer science/year 9/python/python challenges/3 - Area.py
2024-10-09 18:02:29 +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)