Binary Multiplication by Hex

using A=System.Console;using D=System.Convert;class B{static void Main(){string[]c=A.ReadLine().Split(',');A.Write(D.ToString(D.ToInt32(c[0],2)*D.ToInt32(c[1],2),2).PadLeft(8,'0'));}}

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

download

return to the top page