n = 5 f = 1 i = 1 LOOP: f = f * i i = i + 1 IF i > n THEN GOTO END GOTO LOOP END: PRINT f