REM This program adds two numbers and prints the sum CLS READ num1, num2 LET sum = num1 + num2 PRINT "The sum is"; sum DATA 8,16 END