So I wrote a program that makes really big numbers in python in an attempt to break a VM. Here’s the code:
number = 2 count = 0 while 1: number = number*number count = count + 1 print str(count) + ' Compounds , ' + str(len(str(number))) + ' Digits'
I left it on for a few days and ended up with this:
Someone try and beat 26 compounds!