Push Tracker
experiments-07-07-12-local-.../agentic_scratch/gpt-oss-120b/t3_pipeline/sum.py

6 lines
105 B
Python
Raw Normal View History

G
2026-07-12 21:35:10 -04:00
total = 0
with open('nums.txt') as f:
for line in f:
total += int(line.strip())
print(total)