C Created: Joe Zachary, January 26, 1993 C Modified: C Computes the sum of the squares of the numbers from 1 to 5 PROGRAM LOOP IMPLICIT NONE INTEGER SUM SUM = 0 SUM = SUM + 1*1 SUM = SUM + 2*2 SUM = SUM + 3*3 SUM = SUM + 4*4 SUM = SUM + 5*5 PRINT *, 'The sum of squares is ', SUM STOP END