Binary Multiplication by 51b

import std.stdio;void main(){int n;foreach(c;readln)n*=2,n+=c%2;writef("%08b",n/512*n&255);}

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

download

return to the top page