填空题

以下是一个计算矩形面积的程序,调用过程计算矩形面积,请将程序补充完整。
  Sub RecArea(L,W)
   Dim S As Double
   S=L*W
   MsgBox"Total Area is"& Str(S)
  End Sub
  Private Sub Command1_Click()
   Dim M,N
   M=InputBox("What is the L")
   M=Val(M)
    【11】 
   N=Val(N)
    【12】 
  End Sub

【参考答案】

【11】N=InputBox("What is the W")
【12】Call RecArea(M,N)