swab by jake

using c=System.Console;class P{static void Main(){string s=c.In.ReadToEnd();for(int i=1;i<s.Length;i+=2)c.Write("{0}{1}",s[i],s[i-1]);}}

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

download

return to the top page