Collatz Problem by eban

read i
bc<<_
$i;for(i=$i;1<i;){if(i%2)i=i*3+1 else i/=2;i}

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page