# This is my first program in Python
# It computes the surface area of a rectangle
#
# Instructions:
#
print "\n"
print "This program computes the surface area of a rectangle"
print "\n"
#
# Input to the program
#
Width =  raw_input("Enter the width of the rectangle  : ")
Width = float(Width)
#
Length = raw_input("Enter the length of the rectangle : ")
Length = float(Length)
#
# Execute part
#
Surface = Width*Length
#
# Output results
#
print "\n"
print "The surface of the rectangle is : ",Surface
#
# End
#
