Push Tracker
experiments-07-07-12-local-.../agentic_scratch/devstral-small2-24b/t3_pipeline/sum.py

6 lines
102 B
Python
Raw Permalink Normal View History

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