VB Code:
  1. Option Explicit
  2.  
  3. Private Sub Form_Load()
  4.  
  5.     Dim np As CNumberProcessor
  6.     Dim no As cNumberOperator
  7.     Dim n1 As CNumber
  8.     Dim n2 As CNumber
  9.    
  10.     Set np = New CNumberProcessor
  11.     Set no = New cNumberOperator
  12.    
  13.     n1.Operand.Add 2
  14.     n2.Operand.Add 2
  15.     no.Operator = "+"
  16.    
  17.     np.AddOperator no
  18.     np.AddOperand n1
  19.     np.AddOperand n2
  20.     np.Process
  21.    
  22.     Debug.Print np.Result
  23.    
  24. End Sub

VB Code:
  1. Option Explicit
  2.  
  3. Private Sub Form_Load()
  4.  
  5.     Dim n1 As Long
  6.     Dim n2 As Long
  7.    
  8.     n1 = "2"
  9.     n2 = "2"
  10.    
  11.     Debug.Print n1 + n2
  12.    
  13. End Sub

I know which way I prefer.