Binary Multiplication by z423x5c6

a,b=input().split(',')
c=bin(int(a,2)*int(b,2))[2:]
print('0'*(8-len(c))+c)

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

download

return to the top page