swab by jr

using c=System.Console;using System;class Program{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