t=[0] with open("086_data.txt") as f: for line in f: t.append(int(line.split()[1])) i=0 s=0 while i < 4095 and s <= 1000000: i+=1 s+=t[i] print i,s