CLS
INPUT "How many numbers do you want to add"; n
FOR i = 1 TO n
INPUT "Enter the number you want to add"; x
s = s + x
NEXT i
PRINT "The sum of the numbers you entered is"; s
END
INPUT "How many numbers do you want to add"; n
FOR i = 1 TO n
INPUT "Enter the number you want to add"; x
s = s + x
NEXT i
PRINT "The sum of the numbers you entered is"; s
END