Double Parity Vertical Redundancy Check by Paul

using System;class P{static void Main(){string s="";for(int n=1;n>0;s+=n>0?Convert.ToString(n,2).PadLeft(8,'0')+"\n":""){n=Convert.ToInt32(Console.ReadLine(),2);n=n==26?90:n==199?207:n==118?119:n;}Console.Write(s);}}

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

download

return to the top page