Im a newbie programmer and this is kind of code i did in the very beggening but i wanna know how to change this code to work with threads.
Code:
Module Module1
    Sub Main()
        Dim A, B As Integer
        A = 18
        B = 20
        Dim C As Integer
        C = A + B
        System.Console.WriteLine(C)
        Console.ReadKey()
    End Sub
End Module