Shifting Pattern Fixed by shinh

a=raw_input()
b=''
while a:
 print b+a
 b=a[-1]+b
 a=a[:-1]

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

download

return to the top page