fork download
  1. # your code goes here
Success #stdin #stdout 0.09s 14112KB
stdin
seek (3); read (5);  jsidm

f=open('input.txt','w')

f.write('ajsjsidmmkkkddmdmd')

f.close()

f=open('input.txt','r')

f.seek(3)

a=f.read(5)

print(a)

 
stdout
Standard output is empty