Collatz Problem by nai

main(c,v){for(v%=29;printf("%d\n",-v)*~v;v=v%2?v*3-1:v/2);}

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

download

return to the top page