Hi Dave,
You are correct, in your case it would be 230. (I missed that DEC2 you had in there).
What I was really going for was the fact that you have all three variables, Num1, Num2 and Total all declared as Bytes. So 200 in Num1, that's fine. But 300 in Num2 won't work as it will overflow and will actually result in the value 44 in Num2 the Total would be 244. Same thing if you'd do 200+200, Num1 is fine and so is Num2 but 400 won't fit in Total... You seem to have that under control though!
For the next exercise, why not make the PIC ask three questions like:
Num1: (You input whatever)
Operator: (You input +, - / or *)
Num2: (You input whatever)
And then present the result. That should make it a little easier to sort out - I think.
/Henrik.