Binary Multiplication by potato

r=raw_input()
print'{0:08b}'.format(int(r[:8],2)*int(r[9:],2))

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

download

return to the top page