Imports System
Imports System.Text
Imports Microsoft.VisualBasic.Strings
Imports System.Numerics
Class MainClass
Public Shared Sub Main()
Dim bigIntFromDouble As New BigInteger(179.6)
Console.WriteLine(bigIntFromDouble)
Dim bigIntFromInt64 As New BigInteger(99999996952)
Console.WriteLine(bigIntFromInt64)
End Sub
End Class