count up digits by twobit

f(a){char*s=strdup(a);s[strspn(s,"0")]--&&f();puts(a);}main(i){f(gets(&i));}

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

download

return to the top page