Imports System
Public Class Program
Public Shared Sub Main()
Dim a As Integer = 5
Dim b As Integer = 3
Dim div As Integer = a \ b
Dim modulo As Integer = a Mod b
Console.WriteLine(div)
Console.WriteLine(modulo)
Console.WriteLine()
Console.WriteLine(CInt((100 \ 26)))
Console.WriteLine(CInt((100 Mod 26)))
End Sub
End Class
' run:
'
' 1
' 2
'
' 3
' 22
'