# Problem
Place the instructions in the correct order to perform the indicated calculation.
# Process
...
# Answer
```armasm
ADR r4, A
LDR r0, [r4]
ADR r4, B
LDR r1, [r4]
MUL r0, r0, r1
ADR r4, C
LDR r2, [r4]
ADD r0, r0, r2
ADR r4, X
STR r0, [r4]
```