Reapeated Printing FIXED by twobit

while 1:
\x09a,b,c=raw_input().split();s=""
\x09while a<=b:s+=a*int(c);a=chr(ord(a)+1)
\x09print s

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

download

return to the top page