Imports System
Public Module Module1
Public Sub Main()
' Your Total minutes '
Dim TotMins As Integer = 194
' Calculate your hours by getting the number of divisions by 60 minutes (1 hour). The Math.Floor() method will get the closest integer '
Dim Hours = Math.Floor(TotMins / 60)
' Calculate your minutes by using the Modulo operator which yields the remainder after division has been performed as many times as possible '
Dim Minutes = TotMins Mod 60
' Output your results '
Console.WriteLine("Hours : " & Hours)
Console.WriteLine("Minutes : " & Minutes)
End Sub
End Module