# Homework 13, problem 1: Rectangle area. # # Compute the area of a rectangle and print it with a label. # # Run with: python exercises/13/homework/01-rectangle-area.py width = 6 height = 4 # Your code goes here: