print "This program will calculate the area of a rectangle" length = input("Enter the length: ") width = input("Enter the width: ") area = length + width print "Area: ", area