COMMENT #-# Author: Brian Tiffin Dedicated to the public domain Date started: December 2016 Modified: 2016-12-14/12:07-0500 COMMENT #+# # Sum of values from 0 to 16777216 # BEGIN INT i := 0; LONG INT total := 0; FOR i FROM 0 BY 1 TO 2^24 DO total +:= i OD; print ((total)) END