Write a statement to set the value of area to the value of length times the value of width.

LANGUAGE: Visual Basic

CHALLENGE:

Write a statement to set the value of area to the value of length times the value of width.  (The variables have already been declared and length and width have already been initialized.)

SOLUTION:

area = length * width