Challenge

The challenge template is loaded into the playground. Do not modify it, only add new code.
Done here? Go back to the challenges page and select another!

Multiply 2 Numbers

Number of submissions and other statistics here :)

Multiply the numbers in the addresses 0x0 and 0x1 and store the result in the address 0x2. Note that there is no multiply instruction in the MIMA. The multiplication is unsigned, and you can assume the input to be positive or zero integers.

Expected result:

memory[2] = memory[1] * memory[0]