using nasm create a program that calculates the followingexpression you are to read 5124228
Using NASM create a program that calculates the followingexpression: You are to read in two integer numbers, A and B. You are to usethose two integers to compute thefollowingexpression_answer=A*B-(A+B)/(A-B). You should produce anerror message should A-B be zero, as that will cause the divisionto fail. Notes: (1) For all assignments, do not use I/O routines that change thescreen colors, font sizes, etc.
(2) All numbers are to be displayed in a single window, not onepop-up for each value (which is painful to look at for the arraysorting output). (3) Do not introduce time delays. . . .