fork download
  1. # your code goes here
Success #stdin #stdout 0.13s 14156KB
stdin
fin = open("Input.txt ", "r)
flout = open("Output.txt", "w")
a=int(fin.read(3))
fin.seek(4)
b=int(fin.read(4))
fin.seek(9)
c=int(fin.read(5))
fout.write(str(a+b+c))
fin.close()
fout.close(]
stdout
Standard output is empty