Console.Write("Enter a number: ")
Input = Convert.ToUInt64(Console.ReadLine())
Console.WriteLine(FormatNumber(Input))
Public Function FormatNumber(ByVal Input As ULong) As String
Dim Result As String = Input.ToString()
Result = String.Format("{0}b", Input / 1000000000)
Result = String.Format("{0}m", Input / 1000000)
Result = String.Format("{0}k", Input / 1000)