#!/usr/bin/python
############
# Rectangle_Program_1.py
# This program calculates the area of a rectangle
# From user input
############ 

print "Rectangle_Program_1"
length = input("Please put in the length of the rectangle:")
width = input("Please put in the width of the rectangle:")
print "Area",length*width
