@Knoebber
for(int cookie=0;cookie<=10^100;cookie++){
System.out.println(cookie);
}
A GOOGOL COOKIES!
Except that a Java int is a signed 32bit number (so its range is from -2^31..2^31 - 1, or -2,147,483,648..+2,147,483,647), you really should be using BigInteger (and a wagonload of patience...).
Also, I'd like to nominate this for most pointless thread of the WL forum... :s