This program illustrates the requirement that the two operands of a math instruction must be of the same size. For instance, "add ebx, cx" is an invalid instruction that attempts to add a 2-byte value to a 4-byte value. This program demonstrates one technique to circumvent this issue.