Push Tracker
experiments-07-07-12-local-.../agentic_scratch/devstral-small2-24b/t3_pipeline/sum.py
2026-07-13 01:35:10 +00:00

6 lines
102 B
Python

total = 0
with open('nums.txt', 'r') as f:
for line in f:
total += int(line)
print(total)