# Arup Guha
# Program that calculates the area of a rectangle.
# 1/8/20

# We create two variables and set them to values via the assignment statement.
length = 20
width = 10

# Here we create a variable area and assign it to a value based on the
# values of other variables we currently have.
area = length*width

# Ta da!
print("The area of the rectangle is", area)
