'CIS121 'Lab 9; alt 'Pseudocode Loops 'Author: Ted DeJong Total = 0 Num = InputBox("This will add numbers together. Please input your first number to be added.") Do While (Num <> "stop") Total = Total + Num Num = InputBox("Please input the next number. Type the word, 'stop', to complete the addition and display the total.") Loop MsgBox "Your total is " & Total