Write an assembly language program which takes two integers, A and B, and computes the following expressions. You must use the same variables for A and B throughout all three expressions (you can hard code once at the beginning). The result of each problem should be printed to the terminal.
1) A * 5
2) (A + B) – (A / B)
3) (A – B) + (A * B)