Exerpad
Exercise 2 · Chapter: Linear ProgramsRequired+50 XP

Rectangle Area

Given width = 8 and height = 5, compute and print the area.

Your output should be:

Area: 40
Need a hint?
3 available · costs 5 XP each
python
width = 8
height = 5

# Compute the area and print it
Output
Run your code to see the output here.