Binary Multiplication by Paul

using O=System.Console;using C=System.Convert;class P{static void Main(){string[]s=O.ReadLine().Split(',');O.Write(C.ToString(C.ToInt32(s[0],2)*C.ToInt32(s[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