Imports System
Public Module Module1
Public Sub Main()
'declaring variables for cats, dogs, and pets and setting the values
Dim cats As String = 12
Dim dogs As String = 3
Dim pets As String
'setting the value of pets adding cats and dogs
pets = cats + dogs
Console.WriteLine("Pets = " & pets)
End Sub
End Module