Okay. My question is how do I set up a code to run it in order to get the answers? Example:
Code:
Dim a As Decimal = 2.5D
          Dim b As Decimal = 4.0D
          Dim c As Decimal = 12.7D
          
          Dim i As Integer = 4
          Dim j As Integer = 8
          Dim k As Integer = 17
I want to find the value of X after this statement is executed?
Code:
Dim X As Integer = i + j
I am not asking for the results. The result is what I would like to figure out for myself. However, I am very new to VB and would like to know how to set this form. I am aware of variables being declared. What suggestions do you have for testing this and other codes like this?

Thank you.