# Speedcode example: Sum of squares
# Computes sum of squares from 1 to N
01 0 → X
02 10 → N
03 1 → I
04 I * I → TEMP
05 X + TEMP → X
06 I + 1 → I
07 I - N → DIFF
08 DIFF ≤ 0 → 04
09 X → OUTPUT
