19/05/2023: A causa di un errore sono stati cancellati, insieme ad account creati da bot, alcuni account legittimi. Si prega di leggere qui: https://www.gambas-it.org/smf/index.php?topic=9733.0
Public Sub Main() Dim s1, s2 As String Dim addi, sott, molt, divi As BigInt s1 = "9999999999999999999999999999999999999999999999999999999999999999999999999999" s2 = "8888888888888888888888888888888888888888888888888888888888888888888888888888" addi = BigInt.FromString(s1) + BigInt.FromString(s2) sott = BigInt.FromString(s1) - BigInt.FromString(s2) molt = BigInt.FromString(s1) * BigInt.FromString(s2) divi = BigInt.FromString(s1) / BigInt.FromString(s2) Print addi Print sott Print molt Print diviEnd