mix lines by chocobi

using C=System.Console;class M{static void Main(){var s=new string[99];int c,x=0;for(;(c=C.Read())>0;x=c<11?0:x+1)if(c>10)s[x]+=(char)c;for(;x<99;)C.Write(s[x++]);}}

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

download

return to the top page