fork download
  1. # your code goes here
Success #stdin #stdout 0.13s 14152KB
stdin
f=open('input.txt','w')

f.write('65 859 365')

f.close()

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

f.seek(4)

a=f.read(2)

b=f.read(2)

f.seek(8)

c=f.read(2)

print(a,c)
stdout
Standard output is empty