Reapeated Printing by govind

while 1:
 s='';a,b,c=raw_input().split()
 while a<=b:exec"s+=a*int(c);a=chr(ord(a)+1)"
 print s

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

download

return to the top page