Shifting Pattern Fixed by darefilz

using C=System.Console;class P{static void Main(){var s=C.ReadLine();for(int i=0,l=s.Length;i<l;++i)C.WriteLine(s.Substring(l-i)+s.Substring(0,l-i));}}

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

download

return to the top page