|
|
|
|
|
by mattashii
3082 days ago
|
|
If you're going that way, you can also interpret it - pardon my programming - as the following: int result;
for (int i = 0; i < 77232917; i++) {
result = 2 * 2;
}
return result - 1;
... which obviously results in 3. Also a (mersienne) prime, but not quite as big as you'd expect, and certainly not millions of digits long. |
|