MASM x86 Adding two ints
问题 I am writing a simple program that takes 3 ints from the user and does the following math: Sum of the first 2 numbers Difference of the second and third numbers Product of all three numbers Quotient (integer) and remainder of first and third numbers There should be output to the user showing the calculation. For example, if the user enters 10, 9, and 8, it should show for the first calculation: 10 + 9 = 19 I'm trying to do the sum at the moment. I was able to calculate it, but I seem to be